ChatThreadImageAttachment constructor

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

Implementation

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