toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (allowedValues != null) 'allowedValues': allowedValues!,
      if (maxValue != null) 'maxValue': maxValue!,
      if (minValue != null) 'minValue': minValue!,
      if (name != null) 'name': name!,
      if (optional != null) 'optional': optional!,
      if (parameterType != null) 'parameterType': parameterType!,
    };