toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (files != null) 'files': files!,
      if (id != null) 'id': id!,
      if (isReportReady != null) 'isReportReady': isReportReady!,
      if (kind != null) 'kind': kind!,
      if (request != null) 'request': request!,
      if (rowCount != null) 'rowCount': rowCount!,
      if (rows != null) 'rows': rows!,
      if (statisticsCurrencyCode != null)
        'statisticsCurrencyCode': statisticsCurrencyCode!,
      if (statisticsTimeZone != null)
        'statisticsTimeZone': statisticsTimeZone!,
    };