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