call method

  1. @override
Maybe call(
  1. Maybe v
)
override

Applies the given arguments. This method MUST throw an Exception on invalid args.

Implementation

@override
Maybe call(Maybe v) =>
    v.type<String>().map((s) => s.split('').reversed.join());