StreamSendingIndicator constructor

const StreamSendingIndicator({
  1. Key? key,
  2. required Message message,
  3. bool isMessageRead = false,
  4. double? size = 12,
})

Shows the sending status of a message.

Implementation

const StreamSendingIndicator({
  super.key,
  required this.message,
  this.isMessageRead = false,
  this.size = 12,
});