Tail constructor

Tail()

Implementation

Tail()
  : super(
      methodName: "tail",
      arity: 0,
      targetType: NativeMethodTarget.string,
      function: (target, _, _) {
        return target.substring(1);
      },
    );