copyWith method
UpdateChatNotificationSettings
copyWith({
- int? chatId,
- ChatNotificationSettings? notificationSettings,
- dynamic extra,
- 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,
);