isSupported static method

bool isSupported(
  1. String mimeType
)

Whether the provided String representation of a MimeType is supported

Implementation

static bool isSupported(String mimeType) {
  return _map.containsKey(mimeType);
}