toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final matchedIpRange = this.matchedIpRange;
final matchedSubnetUri = this.matchedSubnetUri;
final region = this.region;
final uri = this.uri;
return {
'displayName': ?displayName,
'matchedIpRange': ?matchedIpRange,
'matchedSubnetUri': ?matchedSubnetUri,
'region': ?region,
'uri': ?uri,
};
}