toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['Response_Code'] = this.responseCode;
data['Message'] = this.message;
// if (this.info != null) {
// data['Info'] = this.info!.map((v) => v.toJson()).toList();
// }
return data;
}