toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final acceleratorCount = this.acceleratorCount;
final vmFamily = this.vmFamily;
final workloadType = this.workloadType;
return {
'acceleratorCount': ?acceleratorCount,
'vmFamily': ?vmFamily,
'workloadType': ?workloadType,
};
}