custom static method

Insertable<DownloadRow> custom({
  1. Expression<String>? checksum,
  2. Expression<String>? path,
  3. Expression<int>? rowid,
})

Implementation

static Insertable<DownloadRow> custom({
  Expression<String>? checksum,
  Expression<String>? path,
  Expression<int>? rowid,
}) {
  return RawValuesInsertable({
    if (checksum != null) 'checksum': checksum,
    if (path != null) 'path': path,
    if (rowid != null) 'rowid': rowid,
  });
}