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