convertorForType function

ConvertorFromPointer? convertorForType(
  1. String type
)

Returns the ConvertorFromPointer function for type.

Implementation

ConvertorFromPointer? convertorForType(String type) {
  return _convertorCache[type];
}