map property

Map<String, dynamic> map

Implementation

Map<String, dynamic> get map {
  return {
    pt_name_shipping: this.name,
    pt_email_shipping: this.email,
    pt_phone_shipping: this.phone,
    pt_address_shipping: this.addressLine,
    pt_country_shipping: this.country,
    pt_city_shipping: this.city,
    pt_state_shipping: this.state,
    pt_zip_shipping: this.zipCode
  };
}