ChatLinearProgressView constructor

const ChatLinearProgressView({
  1. Key? key,
  2. required double width,
  3. double height = 6,
  4. required String msgId,
  5. Stream<MsgStreamEv<int>>? stream,
  6. int initProgress = 100,
})

this.show = message.status == MessageStatus.sending;

Implementation

const ChatLinearProgressView({
  Key? key,
  required this.width,
  this.height = 6,
  required this.msgId,
  this.stream,
  this.initProgress = 100,
}) : super(key: key);