ChatForwardView constructor

const ChatForwardView({
  1. Key? key,
  2. required ChatId from,
  3. required List<ChatItemQuoteInput> quotes,
  4. String? text,
  5. List<Attachment> attachments = const [],
  6. void onSent()?,
})

Implementation

const ChatForwardView({
  super.key,
  required this.from,
  required this.quotes,
  this.text,
  this.attachments = const [],
  this.onSent,
});