copyWith method

  1. @override
UpdateAutosaveSettings copyWith({
  1. AutosaveSettingsScope? scope,
  2. ScopeAutosaveSettings? settings,
  3. dynamic extra,
  4. 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,
    );