toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cluster = this.cluster;
  final location = this.location;
  final namespace = this.namespace;
  final path = this.path;
  final service = this.service;
  return {
    'cluster': ?cluster,
    'location': ?location,
    'namespace': ?namespace,
    'path': ?path,
    'service': ?service,
  };
}