toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final count = this.count;
  final resourceType = this.resourceType;
  final structuredStorageSizeBytes = this.structuredStorageSizeBytes;
  final versionedStorageSizeBytes = this.versionedStorageSizeBytes;
  return {
    'count': ?count,
    'resourceType': ?resourceType,
    'structuredStorageSizeBytes': ?structuredStorageSizeBytes,
    'versionedStorageSizeBytes': ?versionedStorageSizeBytes,
  };
}