custom static method
Insertable<SyncPoint>
custom(
{ - Expression<String>? scopeName,
- Expression<String>? scopeKeys,
- Expression<String>? lastServerTs,
- Expression<int>? rowid,
})
Implementation
static Insertable<SyncPoint> custom({
Expression<String>? scopeName,
Expression<String>? scopeKeys,
Expression<String>? lastServerTs,
Expression<int>? rowid,
}) {
return RawValuesInsertable({
if (scopeName != null) 'scope_name': scopeName,
if (scopeKeys != null) 'scope_keys': scopeKeys,
if (lastServerTs != null) 'last_server_ts': lastServerTs,
if (rowid != null) 'rowid': rowid,
});
}