CapacityConfig.fromJson constructor

CapacityConfig.fromJson(
  1. Map json_
)

Implementation

CapacityConfig.fromJson(core.Map json_)
  : this(
      memoryBytes: json_['memoryBytes'] as core.String?,
      vcpuCount: json_['vcpuCount'] as core.String?,
    );