toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final blobStorageSizeBytes = this.blobStorageSizeBytes;
  final instanceCount = this.instanceCount;
  final seriesCount = this.seriesCount;
  final structuredStorageSizeBytes = this.structuredStorageSizeBytes;
  final study = this.study;
  return {
    'blobStorageSizeBytes': ?blobStorageSizeBytes,
    'instanceCount': ?instanceCount,
    'seriesCount': ?seriesCount,
    'structuredStorageSizeBytes': ?structuredStorageSizeBytes,
    'study': ?study,
  };
}