toJson method

Map<String, dynamic> toJson()

Implementation

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