toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final gkeClusters = this.gkeClusters;
  final id = this.id;
  final kind = this.kind;
  final labels = this.labels;
  final networks = this.networks;
  final responsePolicyName = this.responsePolicyName;
  return {
    'description': ?description,
    'gkeClusters': ?gkeClusters,
    'id': ?id,
    'kind': ?kind,
    'labels': ?labels,
    'networks': ?networks,
    'responsePolicyName': ?responsePolicyName,
  };
}