get<T> static method

T Function(Map<String, dynamic>)? get<T>()

Get a converter for a model type

Implementation

static T Function(Map<String, dynamic>)? get<T>() {
  return _converters[T] as T Function(Map<String, dynamic>)?;
}