custom static method
Implementation
static Insertable<SalesOrderData> custom({
Expression<int>? id,
Expression<DateTime>? orderDateTime,
Expression<double>? amount,
Expression<double>? taxAmount,
Expression<String>? status,
Expression<int>? sellerId,
Expression<int>? customerId,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (orderDateTime != null) 'order_date_time': orderDateTime,
if (amount != null) 'amount': amount,
if (taxAmount != null) 'tax_amount': taxAmount,
if (status != null) 'status': status,
if (sellerId != null) 'seller_id': sellerId,
if (customerId != null) 'customer_id': customerId,
});
}