Image constructor

Image({
  1. int? width,
  2. int? height,
  3. int? lastModified,
  4. String? mimeType,
  5. int? size,
  6. Map<String, Link?> links = const {},
})

Returns a new Image instance.

Implementation

Image({
  this.width,
  this.height,
  this.lastModified,
  this.mimeType,
  this.size,
  this.links = const {},
});