Address.fromJson constructor

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

Implementation

factory Address.fromJson(Map<String, dynamic> json) => Address(
      careOf: json["careOf"],
      country: json["country"],
      district: json["district"],
      house: json["house"],
      landmark: json["landmark"],
      locality: json["locality"],
      pin: json["pin"],
      postOffice: json["postOffice"],
      state: json["state"],
      street: json["street"],
      subDistrict: json["subDistrict"],
      vtc: json["vtc"],
    );