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