copyWith method

  1. @override
UpdateChatNotificationSettings copyWith({
  1. int? chatId,
  2. ChatNotificationSettings? notificationSettings,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
UpdateChatNotificationSettings copyWith({
  int? chatId,
  ChatNotificationSettings? notificationSettings,
  dynamic extra,
  int? clientId,
}) =>
    UpdateChatNotificationSettings(
      chatId: chatId ?? this.chatId,
      notificationSettings: notificationSettings ?? this.notificationSettings,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );