toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['MobileNumber'] = this.mobileNumber;
  data['POIType'] = this.pOIType;
  data['POI'] = this.pOI;
  data['Poiemail'] = this.poiemail;
  data['NameOnCard'] = this.nameOnCard;
  data['Poidob'] = this.poidob;
  data['Poigender'] = this.poigender;
  data['FirstName'] = this.firstName;
  data['LastName'] = this.lastName;
  data['Geolocation'] = this.geolocation;
  data['IsMobileNumberVerified'] = this.isMobileNumberVerified;
  data['IsEmailIDVerified'] = this.isEmailIDVerified;
  data['MemberID'] = this.memberID;
  data['POIVerified'] = this.pOIVerified;
  data['MMID'] = this.mMID;
  data['AccountNo'] = this.accountNo;
  data['Poahouse'] = this.poahouse;
  data['Poaco'] = this.poaco;
  data['Poadist'] = this.poadist;
  data['Poaloc'] = this.poaloc;
  data['Poastate'] = this.poastate;
  data['PAN'] = this.pAN;
  data['EkycStatus'] = this.ekycStatus;
  return data;
}