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