toJson method
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,
};
}