toJson method

Map<String, dynamic> toJson()

Implementation

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