isRegistered<T> method

bool isRegistered<T>(
  1. String schemaType
)

Implementation

bool isRegistered<T>(String schemaType) {
  return _typeConverterMap[T]?.containsKey(schemaType) == true;
}