ChatThreadFeedImage constructor

const ChatThreadFeedImage({
  1. required String attachmentElementId,
  2. required String imageId,
  3. String? path,
  4. String? imageUri,
  5. String? mimeType,
  6. String? status,
  7. String? statusDetail,
  8. double? widthPx,
  9. double? heightPx,
})

Implementation

const ChatThreadFeedImage({
  required this.attachmentElementId,
  required this.imageId,
  this.path,
  this.imageUri,
  this.mimeType,
  this.status,
  this.statusDetail,
  this.widthPx,
  this.heightPx,
});