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