SchedulingConfig.fromJson constructor

SchedulingConfig.fromJson(
  1. Map json_
)

Implementation

SchedulingConfig.fromJson(core.Map json_)
  : this(
      preemptible: json_['preemptible'] as core.bool?,
      reserved: json_['reserved'] as core.bool?,
      spot: json_['spot'] as core.bool?,
    );