copyWith method

Implementation

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