getType method

JsonObjectLite? getType(
  1. String typeId
)

Get a type for a supplied type id

Implementation

jsonobject.JsonObjectLite<dynamic>? getType(String typeId) {
  if (_types.containsKey(typeId)) {
    return _types[typeId];
  }

  return null;
}