AdvancedMachineFeatures.fromJson constructor

AdvancedMachineFeatures.fromJson(
  1. Map json_
)

Implementation

AdvancedMachineFeatures.fromJson(core.Map json_)
    : this(
        enableNestedVirtualization:
            json_['enableNestedVirtualization'] as core.bool?,
        enableUefiNetworking: json_['enableUefiNetworking'] as core.bool?,
        performanceMonitoringUnit:
            json_['performanceMonitoringUnit'] as core.String?,
        threadsPerCore: json_['threadsPerCore'] as core.int?,
        turboMode: json_['turboMode'] as core.String?,
        visibleCoreCount: json_['visibleCoreCount'] as core.int?,
      );