copyWith method

SetQuickReplyShortcutName copyWith({
  1. int? shortcutId,
  2. String? name,
})

Implementation

SetQuickReplyShortcutName copyWith({int? shortcutId, String? name}) =>
    SetQuickReplyShortcutName(
      shortcutId: shortcutId ?? this.shortcutId,
      name: name ?? this.name,
    );