CometChatReceipt constructor

const CometChatReceipt({
  1. Key? key,
  2. Widget? waitIcon,
  3. Widget? sentIcon,
  4. Widget? deliveredIcon,
  5. Widget? errorIcon,
  6. Widget? readIcon,
  7. required ReceiptStatus status,
})

Implementation

const CometChatReceipt({
  super.key,
  this.waitIcon,
  this.sentIcon,
  this.deliveredIcon,
  this.errorIcon,
  this.readIcon,
  required this.status,
});