ReportSummarySoleTenantNodeAllocation.fromJson constructor

ReportSummarySoleTenantNodeAllocation.fromJson(
  1. Map json_
)

Implementation

ReportSummarySoleTenantNodeAllocation.fromJson(core.Map json_)
    : this(
        allocatedAssetCount: json_['allocatedAssetCount'] as core.String?,
        node: json_.containsKey('node')
            ? SoleTenantNodeType.fromJson(
                json_['node'] as core.Map<core.String, core.dynamic>)
            : null,
        nodeCount: json_['nodeCount'] as core.String?,
      );