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