ImageFile constructor

ImageFile({
  1. required String relativeRef,
  2. String? checksum,
  3. int? size,
  4. int? width,
  5. int? height,
  6. ThumbHash? thumbhash,
})

Implementation

ImageFile({
  required super.relativeRef,
  super.checksum,
  super.size,
  this.width,
  this.height,
  this.thumbhash,
});