AllocationResourceStatusHealthInfo.fromJson constructor

AllocationResourceStatusHealthInfo.fromJson(
  1. Map json_
)

Implementation

AllocationResourceStatusHealthInfo.fromJson(core.Map json_)
  : this(
      degradedBlockCount: json_['degradedBlockCount'] as core.int?,
      healthStatus: json_['healthStatus'] as core.String?,
      healthyBlockCount: json_['healthyBlockCount'] as core.int?,
    );