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) {
return data;
}