SchedulingConfig constructor

SchedulingConfig({
  1. bool? preemptible,
  2. bool? reserved,
  3. bool? spot,
})

Implementation

SchedulingConfig({
  this.preemptible,
  this.reserved,
  this.spot,
});