SendEntireDataResponseData.fromJson constructor

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

Implementation

factory SendEntireDataResponseData.fromJson(Map<String, dynamic> json) {
  return SendEntireDataResponseData(
    aadharAddress: json['aadhar_address'],
    aadharFilename: json['aadhar_filename'],
    aadharImgFilename: json['aadhar_img_filename'],
    aadharNo: json['aadhar_no'],
    aadharXml: json['aadhar_xml'],
    adharimg: json['adharimg'],
    country: json['country'],
    dateTime: json['date_time'],
    dist: json['dist'],
    dob: json['dob'],
    fathername: json['fathername'],
    gender: json['gender'],
    house: json['house'],
    locality: json['locality'],
    name: json['name'],
    nameOnPan: json['name_on_pan'],
    otherDocumentsFiles: json['other_documents_files'] is Map
        ? Map<String, dynamic>.from(json['other_documents_files'])
        : null,
    panImagePath: json['pan_image_path'],
    panNumber: json['pan_number'],
    pincode: json['pincode'],
    state: json['state'],
    stateField: json['state'],
  );
}