copyWith method

Implementation

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