custom static method

Insertable<SyncPoint> custom({
  1. Expression<String>? scopeName,
  2. Expression<String>? scopeKeys,
  3. Expression<String>? lastServerTs,
  4. 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,
  });
}