toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
final Map<String, dynamic> data = Map<String, dynamic>();
data['label'] = this.label;
data['name'] = this.name;
if (this.value != null) {
data['value'] = this.value!.toJson();
}
data['type'] = this.type;
data['view'] = this.view;
data['header'] = this.header;
data['classNames'] = this.classNames;
data['amountValue'] = this.amountValue;
data['valueLabel'] = this.valueLabel;
data['errorCode'] = this.errorCode;
data['errorMessage'] = this.errorMessage;
return data;
}