Address.fromJson constructor
Address.fromJson(
- Map<String, dynamic> json
)
Implementation
Address.fromJson(Map<String, dynamic> json) {
id = json['id'];
addressLineOne = json['addressLineOne'];
addressLineTwo = json['addressLineTwo'];
addressLineThree = json['addressLineThree'];
addressLineFour = json['addressLineFour'];
addressLineFive = json['addressLineFive'];
addressLineSix = json['addressLineSix'];
latitude = json['latitude'];
longitude = json['longitude'];
createdBy = json['createdBy'];
updatedBy = json['updatedBy'];
createdDate = json['createdDate'];
updatedDate = json['updatedDate'];
countryCode = json['countryCode'];
}