copyWith method

SendQuickReplyShortcutMessages copyWith({
  1. int? chatId,
  2. int? shortcutId,
  3. int? sendingId,
})

Implementation

SendQuickReplyShortcutMessages copyWith({
  int? chatId,
  int? shortcutId,
  int? sendingId,
}) => SendQuickReplyShortcutMessages(
  chatId: chatId ?? this.chatId,
  shortcutId: shortcutId ?? this.shortcutId,
  sendingId: sendingId ?? this.sendingId,
);