BatchRunPivotReportsResponse.fromJson constructor

BatchRunPivotReportsResponse.fromJson(
  1. 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<RunPivotReportResponse>((value) =>
                    RunPivotReportResponse.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );