custom static method

Insertable<ComponentCategoryRow> custom({
  1. Expression<String>? componentId,
  2. Expression<int>? categoryId,
  3. Expression<int>? rowid,
})

Implementation

static Insertable<ComponentCategoryRow> custom({
  Expression<String>? componentId,
  Expression<int>? categoryId,
  Expression<int>? rowid,
}) {
  return RawValuesInsertable({
    if (componentId != null) 'component_id': componentId,
    if (categoryId != null) 'category_id': categoryId,
    if (rowid != null) 'rowid': rowid,
  });
}