copyWith method

ToggleChatGiftNotifications copyWith({
  1. int? chatId,
  2. bool? areEnabled,
})

Implementation

ToggleChatGiftNotifications copyWith({int? chatId, bool? areEnabled}) =>
    ToggleChatGiftNotifications(
      chatId: chatId ?? this.chatId,
      areEnabled: areEnabled ?? this.areEnabled,
    );