toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dateTimeValues != null) 'dateTimeValues': dateTimeValues!,
  if (enumValues != null) 'enumValues': enumValues!,
  if (floatValues != null) 'floatValues': floatValues!,
  if (integerValues != null) 'integerValues': integerValues!,
  if (mapProperty != null) 'mapProperty': mapProperty!,
  if (name != null) 'name': name!,
  if (propertyValues != null) 'propertyValues': propertyValues!,
  if (textValues != null) 'textValues': textValues!,
  if (timestampValues != null) 'timestampValues': timestampValues!,
};