getConverter method

Converter? getConverter(
  1. Type fromType,
  2. Type toType
)

Implementation

Converter? getConverter(Type fromType, Type toType) {
  final key = TypeKey(fromType, toType);

  return _converters[key];
}