copyWith method

AutoDownloadSettingsPresets copyWith({
  1. AutoDownloadSettings? low,
  2. AutoDownloadSettings? medium,
  3. AutoDownloadSettings? high,
  4. dynamic extra,
  5. int? clientId,
})

Implementation

AutoDownloadSettingsPresets copyWith({
  AutoDownloadSettings? low,
  AutoDownloadSettings? medium,
  AutoDownloadSettings? high,
  dynamic extra,
  int? clientId,
}) =>
    AutoDownloadSettingsPresets(
      low: low ?? this.low,
      medium: medium ?? this.medium,
      high: high ?? this.high,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );