toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final enableNestedVirtualization = this.enableNestedVirtualization;
  final enableUefiNetworking = this.enableUefiNetworking;
  final performanceMonitoringUnit = this.performanceMonitoringUnit;
  final threadsPerCore = this.threadsPerCore;
  final turboMode = this.turboMode;
  final visibleCoreCount = this.visibleCoreCount;
  return {
    'enableNestedVirtualization': ?enableNestedVirtualization,
    'enableUefiNetworking': ?enableUefiNetworking,
    'performanceMonitoringUnit': ?performanceMonitoringUnit,
    'threadsPerCore': ?threadsPerCore,
    'turboMode': ?turboMode,
    'visibleCoreCount': ?visibleCoreCount,
  };
}