copyWith method

DownloadRow copyWith({
  1. String? checksum,
  2. String? path,
})

Implementation

DownloadRow copyWith({String? checksum, String? path}) =>
    DownloadRow(checksum: checksum ?? this.checksum, path: path ?? this.path);