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