ExactMatchMetricValue.fromJson constructor

ExactMatchMetricValue.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ExactMatchMetricValue.fromJson(Map<String, dynamic> json) {
  return ExactMatchMetricValue(score: decodeDouble(json['score']));
}