MimeType constructor

MimeType(
  1. String type,
  2. String subType, [
  3. String? charSet
])

Implementation

MimeType(this.type, this.subType, [String? charSet])
    : charset = normalizeCharset(charSet);