copyWith method

SetChatNotificationSettings copyWith({
  1. int? chatId,
  2. ChatNotificationSettings? notificationSettings,
})

Implementation

SetChatNotificationSettings copyWith({
  int? chatId,
  ChatNotificationSettings? notificationSettings,
}) =>
    SetChatNotificationSettings(
      chatId: chatId ?? this.chatId,
      notificationSettings: notificationSettings ?? this.notificationSettings,
    );