custom static method

Insertable<RefreshSecretRow> custom({
  1. Expression<String>? userId,
  2. Expression<String>? refresh,
  3. Expression<String>? access,
  4. Expression<int>? rowid,
})

Implementation

static Insertable<RefreshSecretRow> custom({
  Expression<String>? userId,
  Expression<String>? refresh,
  Expression<String>? access,
  Expression<int>? rowid,
}) {
  return RawValuesInsertable({
    if (userId != null) 'user_id': userId,
    if (refresh != null) 'refresh': refresh,
    if (access != null) 'access': access,
    if (rowid != null) 'rowid': rowid,
  });
}