ExascaleConfig.fromJson constructor

ExascaleConfig.fromJson(
  1. Map json_
)

Implementation

ExascaleConfig.fromJson(core.Map json_)
  : this(
      availableStorageSizeGb: json_['availableStorageSizeGb'] as core.int?,
      availableVmStorageSizeGb:
          json_['availableVmStorageSizeGb'] as core.int?,
      totalStorageSizeGb: json_['totalStorageSizeGb'] as core.int?,
      totalVmStorageSizeGb: json_['totalVmStorageSizeGb'] as core.int?,
    );