convert method

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

Converts input and returns the result of the conversion.

Implementation

@override
Map<String, Object?> convert(Object? input) {
  if (input == null) throw TypeException(Map<String, Object?>, input);
  return convertToMap(input);
}