toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final googleCloudStoragePath = this.googleCloudStoragePath;
  final reportDataEndDate = this.reportDataEndDate;
  final reportDataStartDate = this.reportDataStartDate;
  final status = this.status;
  return {
    'googleCloudStoragePath': ?googleCloudStoragePath,
    'reportDataEndDate': ?reportDataEndDate,
    'reportDataStartDate': ?reportDataStartDate,
    'status': ?status,
  };
}