toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final compressionType = this.compressionType;
final rawHashes = this.rawHashes;
final rawIndices = this.rawIndices;
final riceHashes = this.riceHashes;
final riceIndices = this.riceIndices;
return {
'compressionType': ?compressionType,
'rawHashes': ?rawHashes,
'rawIndices': ?rawIndices,
'riceHashes': ?riceHashes,
'riceIndices': ?riceIndices,
};
}