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