toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final basePath = this.basePath;
  final deploymentGroups = this.deploymentGroups;
  final endpoints = this.endpoints;
  final location = this.location;
  final name = this.name;
  final proxyUid = this.proxyUid;
  final serviceAccount = this.serviceAccount;
  final uid = this.uid;
  return {
    'attributes': ?attributes,
    'basePath': ?basePath,
    'deploymentGroups': ?deploymentGroups,
    'endpoints': ?endpoints,
    'location': ?location,
    'name': ?name,
    'proxyUid': ?proxyUid,
    'serviceAccount': ?serviceAccount,
    'uid': ?uid,
  };
}