ReportSummaryVmwareNodeAllocation.fromJson constructor

ReportSummaryVmwareNodeAllocation.fromJson(
  1. Map json_
)

Implementation

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