Customer constructor
Customer({
- dynamic gid,
- dynamic email,
- dynamic name,
- dynamic phoneNumber,
- dynamic taxId,
- dynamic taxStatus,
- dynamic taxValue,
Implementation
Customer({gid, email, name, phoneNumber, taxId, taxStatus, taxValue}) {
this.gid = gid ?? "";
this.email = email ?? "";
this.name = name ?? "";
this.phoneNumber = phoneNumber ?? "";
this.taxId = taxId ?? "";
this.taxStatus = taxStatus ?? "";
this.taxValue = taxValue;
}