CustomerCompanion constructor
const
CustomerCompanion({
- Value<
int> id = const Value.absent(), - Value<
String> code = const Value.absent(), - Value<
String> name = const Value.absent(), - Value<
bool> vip = const Value.absent(), - Value<
String?> address = const Value.absent(), - Value<
String?> phone = const Value.absent(), - Value<
String> email = const Value.absent(), - Value<
String?> imagePath = const Value.absent(),
Implementation
const CustomerCompanion({
this.id = const Value.absent(),
this.code = const Value.absent(),
this.name = const Value.absent(),
this.vip = const Value.absent(),
this.address = const Value.absent(),
this.phone = const Value.absent(),
this.email = const Value.absent(),
this.imagePath = const Value.absent(),
});