ContentType parse(
String value
)

Creates a new content type object from parsing a Content-Type header value. As primary type, sub type and parameter names and values are not case sensitive all these values will be converted to lower case. Parsing this string

text/html; charset=utf-8

will create a content type object with primary type text, sub type html and parameter charset with value utf-8.

Source

/**
 * Creates a new content type object from parsing a Content-Type
 * header value. As primary type, sub type and parameter names and
 * values are not case sensitive all these values will be converted
 * to lower case. Parsing this string
 *
 *     text/html; charset=utf-8
 *
 * will create a content type object with primary type [:text:], sub
 * type [:html:] and parameter [:charset:] with value [:utf-8:].
 */
static ContentType parse(String value) {
  return _ContentType.parse(value);
}