MediaType constructor
Implementation
MediaType(String type, String subtype, [Map<String, String>? parameters])
: type = type.toLowerCase(),
subtype = subtype.toLowerCase(),
parameters = UnmodifiableMapView(
parameters == null ? {} : CaseInsensitiveMap.from(parameters));