toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolValue = this.boolValue;
final floatValue = this.floatValue;
final intValue = this.intValue;
final maxValue = this.maxValue;
final minValue = this.minValue;
final propertyName = this.propertyName;
final textValue = this.textValue;
final unitCode = this.unitCode;
return {
'boolValue': ?boolValue,
'floatValue': ?floatValue,
'intValue': ?intValue,
'maxValue': ?maxValue,
'minValue': ?minValue,
'propertyName': ?propertyName,
'textValue': ?textValue,
'unitCode': ?unitCode,
};
}