BatchRunPivotReportsResponse.fromJson constructor
BatchRunPivotReportsResponse.fromJson(
- Map _json
Implementation
BatchRunPivotReportsResponse.fromJson(core.Map _json)
: this(
kind: _json.containsKey('kind') ? _json['kind'] as core.String : null,
pivotReports: _json.containsKey('pivotReports')
? (_json['pivotReports'] as core.List)
.map((value) => RunPivotReportResponse.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);