copyWithCompanion method

DownloadRow copyWithCompanion(
  1. DownloadsCompanion data
)

Implementation

DownloadRow copyWithCompanion(DownloadsCompanion data) {
  return DownloadRow(
    checksum: data.checksum.present ? data.checksum.value : this.checksum,
    path: data.path.present ? data.path.value : this.path,
  );
}