Address.from constructor

Address.from(
  1. Map json
)

Convert Map to Address

Implementation

Address.from(Map json)
    : country = json['country'],
      streetLine1 = json['streetLine1'],
      streetLine2 = json['streetLine2'],
      city = json['city'],
      provinceState = json['provinceState'],
      postalCode = json['postalCode'],
      category = json['category'];