toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final name = this.name;
  final repeatedEnumValue = this.repeatedEnumValue;
  final uriValues = this.uriValues;
  final valueType = this.valueType;
  final values = this.values;
  return {
    'name': ?name,
    'repeatedEnumValue': ?repeatedEnumValue,
    'uriValues': ?uriValues,
    'valueType': ?valueType,
    'values': ?values,
  };
}