copyWith method

DeleteQuickReplyShortcutMessages copyWith({
  1. int? shortcutId,
  2. List<int>? messageIds,
})

Implementation

DeleteQuickReplyShortcutMessages copyWith({
  int? shortcutId,
  List<int>? messageIds,
}) => DeleteQuickReplyShortcutMessages(
  shortcutId: shortcutId ?? this.shortcutId,
  messageIds: messageIds ?? this.messageIds,
);