ReportSummaryMachineSeriesAllocation.fromJson constructor

ReportSummaryMachineSeriesAllocation.fromJson(
  1. Map json_
)

Implementation

ReportSummaryMachineSeriesAllocation.fromJson(core.Map json_)
  : this(
      allocatedAssetCount: json_['allocatedAssetCount'] as core.String?,
      machineSeries:
          json_.containsKey('machineSeries')
              ? MachineSeries.fromJson(
                json_['machineSeries'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );