toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final discoveryEndpointIpAddress = this.discoveryEndpointIpAddress;
final displayName = this.displayName;
final location = this.location;
final networkUri = this.networkUri;
final secondaryEndpointIpAddress = this.secondaryEndpointIpAddress;
final uri = this.uri;
return {
'discoveryEndpointIpAddress': ?discoveryEndpointIpAddress,
'displayName': ?displayName,
'location': ?location,
'networkUri': ?networkUri,
'secondaryEndpointIpAddress': ?secondaryEndpointIpAddress,
'uri': ?uri,
};
}