custom static method
Implementation
static Insertable<CustomerData> custom({
Expression<int>? id,
Expression<String>? code,
Expression<String>? name,
Expression<bool>? vip,
Expression<String>? address,
Expression<String>? phone,
Expression<String>? email,
Expression<String>? imagePath,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (code != null) 'code': code,
if (name != null) 'name': name,
if (vip != null) 'vip': vip,
if (address != null) 'address': address,
if (phone != null) 'phone': phone,
if (email != null) 'email': email,
if (imagePath != null) 'image_path': imagePath,
});
}