toJson method

Map<String, dynamic> toJson()

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,
  };
}