hasType method

bool hasType(
  1. String type
)

Check whether a TypeInterface has been loaded for a type.

Implementation

bool hasType(String type) {
  return types.containsKey(type);
}