toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (boolValue != null) 'boolValue': boolValue!,
  if (floatValue != null) 'floatValue': floatValue!,
  if (intValue != null) 'intValue': intValue!,
  if (maxValue != null) 'maxValue': maxValue!,
  if (minValue != null) 'minValue': minValue!,
  if (propertyName != null) 'propertyName': propertyName!,
  if (textValue != null) 'textValue': textValue!,
  if (unitCode != null) 'unitCode': unitCode!,
};