InstanceConsumptionInfo.fromJson constructor

InstanceConsumptionInfo.fromJson(
  1. Map json_
)

Implementation

InstanceConsumptionInfo.fromJson(core.Map json_)
  : this(
      guestCpus: json_['guestCpus'] as core.int?,
      localSsdGb: json_['localSsdGb'] as core.int?,
      memoryMb: json_['memoryMb'] as core.int?,
      minNodeCpus: json_['minNodeCpus'] as core.int?,
    );