toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      'first_name': first_name,
      'last_name': last_name,
      'region': region,
      'address1': address1,
      'city': city,
      'zip': zip,
      'email': email,
      'phone': phone,
      'country': country,
      'company': company,
    };