toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final availableMachineCount = this.availableMachineCount;
final gcpService = this.gcpService;
final instanceType = this.instanceType;
final location = this.location;
final name = this.name;
return {
'availableMachineCount': ?availableMachineCount,
'gcpService': ?gcpService,
'instanceType': ?instanceType,
'location': ?location,
'name': ?name,
};
}