copyWith method
UpdateAutosaveSettings
copyWith({
- AutosaveSettingsScope? scope,
- ScopeAutosaveSettings? settings,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateAutosaveSettings copyWith({
AutosaveSettingsScope? scope,
ScopeAutosaveSettings? settings,
dynamic extra,
int? clientId,
}) =>
UpdateAutosaveSettings(
scope: scope ?? this.scope,
settings: settings ?? this.settings,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);