ComputeStorageDescriptor.fromJson constructor

ComputeStorageDescriptor.fromJson(
  1. Map json_
)

Implementation

ComputeStorageDescriptor.fromJson(core.Map json_)
    : this(
        sizeGb:
            json_.containsKey('sizeGb') ? json_['sizeGb'] as core.int : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );