CustomerCompanion constructor

const CustomerCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<String> code = const Value.absent(),
  3. Value<String> name = const Value.absent(),
  4. Value<bool> vip = const Value.absent(),
  5. Value<String?> address = const Value.absent(),
  6. Value<String?> phone = const Value.absent(),
  7. Value<String> email = const Value.absent(),
  8. 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(),
});