toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowAllServiceAgentAccess = this.allowAllServiceAgentAccess;
  final allowCrossOrgVpcs = this.allowCrossOrgVpcs;
  final mode = this.mode;
  final publicNetworkSource = this.publicNetworkSource;
  final vpcNetworkSources = this.vpcNetworkSources;
  return {
    'allowAllServiceAgentAccess': ?allowAllServiceAgentAccess,
    'allowCrossOrgVpcs': ?allowCrossOrgVpcs,
    'mode': ?mode,
    'publicNetworkSource': ?publicNetworkSource,
    'vpcNetworkSources': ?vpcNetworkSources,
  };
}