ImagePayload constructor

const ImagePayload({
  1. required String url,
  2. String? thumbnailUrl,
  3. int? width,
  4. int? height,
  5. String? caption,
  6. int? fileSizeBytes,
})

Implementation

const ImagePayload({
  required this.url,
  this.thumbnailUrl,
  this.width,
  this.height,
  this.caption,
  this.fileSizeBytes,
});