MediaType constructor

const MediaType(
  1. String type,
  2. String subtype, {
  3. Map<String, String>? parameters,
})

Implementation

const MediaType(
  this.type,
  this.subtype, {
  Map<String, String>? parameters,
}) : parameters = parameters ?? const {};