custom static method
Implementation
static Insertable<SalesOrderLineData> custom({
Expression<int>? id,
Expression<int>? salesOrderId,
Expression<int>? productId,
Expression<double>? units,
Expression<double>? amount,
Expression<double>? taxAmount,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (salesOrderId != null) 'sales_order_id': salesOrderId,
if (productId != null) 'product_id': productId,
if (units != null) 'units': units,
if (amount != null) 'amount': amount,
if (taxAmount != null) 'tax_amount': taxAmount,
});
}