toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['vendorInfoId'] = this.vendorInfoId;
  data['person_in_charge_name'] = this.personInChargeName;
  data['email_address'] = this.emailAddress;
  data['password'] = this.password;
  data['confirm_password'] = this.confirmPassword;
  data['contact_number'] = this.contactNumber;
  data['verification_code'] = this.verificationCode;
  return data;
}