copyWith method

SetAutoDownloadSettings copyWith({
  1. AutoDownloadSettings? settings,
  2. NetworkType? type,
})

Implementation

SetAutoDownloadSettings copyWith({
  AutoDownloadSettings? settings,
  NetworkType? type,
}) =>
    SetAutoDownloadSettings(
      settings: settings ?? this.settings,
      type: type ?? this.type,
    );