ChatSendFailedView constructor

const ChatSendFailedView({
  1. Key? key,
  2. required String msgId,
  3. required bool isReceived,
  4. bool isSendFailed = false,
  5. Stream<MsgStreamEv<bool>>? stream,
  6. dynamic onFailedResend()?,
})

Implementation

const ChatSendFailedView({
  Key? key,
  required this.msgId,
  required this.isReceived,
  this.isSendFailed = false,
  this.stream,
  this.onFailedResend,
}) : super(key: key);