ReportSummaryVmwareEngineFinding.fromJson constructor

ReportSummaryVmwareEngineFinding.fromJson(
  1. Map json_
)

Implementation

ReportSummaryVmwareEngineFinding.fromJson(core.Map json_)
  : this(
      allocatedAssetCount: json_['allocatedAssetCount'] as core.String?,
      allocatedRegions:
          (json_['allocatedRegions'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      nodeAllocations:
          (json_['nodeAllocations'] as core.List?)
              ?.map(
                (value) => ReportSummaryVmwareNodeAllocation.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );