parse static method

MimeType parse(
  1. String contentTypeHeader
)

Implementation

static MimeType parse(String contentTypeHeader) {
  ContentType ct = ContentType.parse(contentTypeHeader);
  return MimeType(ct.primaryType, ct.subType);
}