ComputeStorageDescriptor.fromJson constructor

ComputeStorageDescriptor.fromJson(
  1. Map json_
)

Implementation

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