copyWith method

Implementation

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