toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deprecated = this.deprecated;
  final description = this.description;
  final endpointUrl = this.endpointUrl;
  final location = this.location;
  return {
    'deprecated': ?deprecated,
    'description': ?description,
    'endpointUrl': ?endpointUrl,
    'location': ?location,
  };
}