Document constructor

Document(
  1. String type,
  2. String? name,
  3. String? mediaType,
  4. String? context,
  5. Uri? url,
)

Implementation

Document(
  this.type,
  this.name,
  this.mediaType,
  this.context,
  this.url,
) : super(
        null,
        null,
        null,
      );