toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final count = this.count;
final driverVersion = this.driverVersion;
final installGpuDrivers = this.installGpuDrivers;
final type = this.type;
return {
'count': ?count,
'driverVersion': ?driverVersion,
'installGpuDrivers': ?installGpuDrivers,
'type': ?type,
};
}