toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (attribute != null) 'attribute': attribute!,
  if (enumValues != null) 'enumValues': enumValues!,
  if (jsonValues != null) 'jsonValues': jsonValues!,
  if (stringValues != null) 'stringValues': stringValues!,
  if (uriValues != null) 'uriValues': uriValues!,
};