MediaProvider constructor

const MediaProvider(
  1. String name,
  2. String mediaType,
  3. int? size, {
  4. String? description,
})

Creates a new media provider with the given name, mediaType like application/pdf, size in bytes and the optional description.

Implementation

const MediaProvider(this.name, this.mediaType, this.size, {this.description});