ChatThreadImageAttachment constructor

const ChatThreadImageAttachment({
  1. Key? key,
  2. required RoomClient room,
  3. required String? imageId,
  4. String? fallbackMimeType,
  5. String? status,
  6. String? statusDetail,
  7. double? widthPx,
  8. double? heightPx,
  9. bool roundedCorners = true,
  10. VoidCallback? onOpenFullscreen,
})

Implementation

const ChatThreadImageAttachment({
  super.key,
  required this.room,
  required this.imageId,
  this.fallbackMimeType,
  this.status,
  this.statusDetail,
  this.widthPx,
  this.heightPx,
  this.roundedCorners = true,
  this.onOpenFullscreen,
});