fromJson static method

PrintifyAddress fromJson(
  1. Map<String, dynamic> json
)

Implementation

static PrintifyAddress fromJson(Map<String, dynamic> json) => PrintifyAddress(
      first_name: json['first_name'],
      last_name: json['last_name'],
      region: json['region'],
      address1: json['address1'],
      city: json['city'],
      zip: json['zip'],
      email: json['email'],
      phone: json['phone'],
      country: json['country'],
      company: json['company'],
    );