toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final encodedData = this.encodedData;
final entriesCount = this.entriesCount;
final firstValue = this.firstValue;
final riceParameter = this.riceParameter;
return {
'encodedData': ?encodedData,
'entriesCount': ?entriesCount,
'firstValue': ?firstValue,
'riceParameter': ?riceParameter,
};
}