toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (boolValue != null) 'boolValue': boolValue!,
      if (key != null) 'key': key!,
      if (naValue != null) 'naValue': naValue!,
      if (normalizedScore != null) 'normalizedScore': normalizedScore!,
      if (numValue != null) 'numValue': numValue!,
      if (potentialScore != null) 'potentialScore': potentialScore!,
      if (score != null) 'score': score!,
      if (strValue != null) 'strValue': strValue!,
    };