toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clusterName = this.clusterName;
final location = this.location;
final serviceName = this.serviceName;
final serviceNamespace = this.serviceNamespace;
return {
'clusterName': ?clusterName,
'location': ?location,
'serviceName': ?serviceName,
'serviceNamespace': ?serviceNamespace,
};
}