Length constructor

Length()

Implementation

Length()
  : super(
      methodName: "length",
      targetType: .list,
      arity: 0,
      function: (target, _, arguments) {
        return target.length;
      },
    );