toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final endpoints = this.endpoints;
  final name = this.name;
  final uid = this.uid;
  return {
    'annotations': ?annotations,
    'endpoints': ?endpoints,
    'name': ?name,
    'uid': ?uid,
  };
}