custom static method
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,
});
}