AllocationPolicy_Accelerator constructor

AllocationPolicy_Accelerator({
  1. String? type,
  2. Int64? count,
  3. bool? installGpuDrivers,
})

Implementation

factory AllocationPolicy_Accelerator({
  $core.String? type,
  $fixnum.Int64? count,
  $core.bool? installGpuDrivers,
}) {
  final $result = create();
  if (type != null) {
    $result.type = type;
  }
  if (count != null) {
    $result.count = count;
  }
  if (installGpuDrivers != null) {
    $result.installGpuDrivers = installGpuDrivers;
  }
  return $result;
}