map property

Map<String, dynamic> map

Implementation

Map<String, dynamic> get map {
  return {
    pt_name_billing: this.name,
    pt_email_billing: this.email,
    pt_phone_billing: this.phone,
    pt_address_billing: this.addressLine,
    pt_country_billing: this.country,
    pt_city_billing: this.city,
    pt_state_billing: this.state,
    pt_zip_billing: this.zipCode
  };
}