toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final instances = this.instances;
  final labels = this.labels;
  final location = this.location;
  final network = this.network;
  final placement = this.placement;
  final serviceAccount = this.serviceAccount;
  final tags = this.tags;
  return {
    'instances': ?instances,
    'labels': ?labels,
    'location': ?location,
    'network': ?network,
    'placement': ?placement,
    'serviceAccount': ?serviceAccount,
    'tags': ?tags,
  };
}