toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolValue = this.boolValue;
final key = this.key;
final naValue = this.naValue;
final normalizedScore = this.normalizedScore;
final numValue = this.numValue;
final potentialScore = this.potentialScore;
final score = this.score;
final skipValue = this.skipValue;
final strValue = this.strValue;
return {
'boolValue': ?boolValue,
'key': ?key,
'naValue': ?naValue,
'normalizedScore': ?normalizedScore,
'numValue': ?numValue,
'potentialScore': ?potentialScore,
'score': ?score,
'skipValue': ?skipValue,
'strValue': ?strValue,
};
}