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?,
      threadsPerCore: json_['threadsPerCore'] as core.int?,
      visibleCoreCount: json_['visibleCoreCount'] as core.int?,
    );