custom static method
Implementation
static Insertable<CouponData> custom({
Expression<int>? id,
Expression<String>? code,
Expression<String>? name,
Expression<bool>? active,
Expression<String>? type,
Expression<String>? description,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (code != null) 'code': code,
if (name != null) 'name': name,
if (active != null) 'active': active,
if (type != null) 'type': type,
if (description != null) 'description': description,
});
}