copyWith method
UpdateScopeNotificationSettings
copyWith({
- NotificationSettingsScope? scope,
- ScopeNotificationSettings? notificationSettings,
Implementation
UpdateScopeNotificationSettings copyWith({
NotificationSettingsScope? scope,
ScopeNotificationSettings? notificationSettings,
}) => UpdateScopeNotificationSettings(
scope: scope ?? this.scope,
notificationSettings: notificationSettings ?? this.notificationSettings,
);