toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (displayName != null) 'displayName': displayName!,
  if (method != null) 'method': method!,
  if (name != null) 'name': name!,
  if (occurrenceType != null) 'occurrenceType': occurrenceType!,
  if (valueType != null) 'valueType': valueType!,
};