custom static method
- Expression<
String> ? checksum, - Expression<
String> ? path, - 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,
});
}