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