ChatForwardController constructor

ChatForwardController(
  1. ChatService _chatService,
  2. UserService _userService,
  3. AbstractSettingsRepository _settingsRepository, {
  4. String? text,
  5. void pop([
    1. bool
    ])?,
  6. List<Attachment> attachments = const [],
  7. void onSent()?,
  8. required ChatId from,
  9. required List<ChatItemQuoteInput> quotes,
})

Implementation

ChatForwardController(
  this._chatService,
  this._userService,
  this._settingsRepository, {
  this.text,
  this.pop,
  this.attachments = const [],
  this.onSent,
  required this.from,
  required this.quotes,
});