AddressListData.fromJson constructor

AddressListData.fromJson(
  1. dynamic json
)

Implementation

AddressListData.fromJson(dynamic json) {
  _masterUserAddressID = json['master_user_address_ID'];
  _type = json['type'];
  _landmark = json['landmark'];
  _address = json['address'];
  _city = json['city'];
  _cityId = json['city_id'];
  _state = json['state'];
  _stateId = json['state_id'];
  _pincode = json['pincode'];
  _country = json['country'];
  _countryId = json['country_id'];
  _documentType = json['document_type'];
  _documentNumber = json['document_number'];
  _documentFront = json['document_front'];
  _documentBack = json['document_back'];
  _panNumber = json['pan_number'];
  _panCardFront = json['pan_card_front'];
}