copyWith method
UpdateScopeNotificationSettings
copyWith({
- NotificationSettingsScope? scope,
- ScopeNotificationSettings? notificationSettings,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateScopeNotificationSettings copyWith({
NotificationSettingsScope? scope,
ScopeNotificationSettings? notificationSettings,
dynamic extra,
int? clientId,
}) => UpdateScopeNotificationSettings(
scope: scope ?? this.scope,
notificationSettings: notificationSettings ?? this.notificationSettings,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);