convert method

  1. @override
T convert(
  1. Map<String, Object?> input
)
override

Converts input and returns the result of the conversion.

Implementation

@override
T convert(Map<String, Object?> input) {
  return _function(input);
}