ExactMatchInstance.fromJson constructor

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

Implementation

factory ExactMatchInstance.fromJson(Map<String, dynamic> json) {
  return ExactMatchInstance(
    prediction: json['prediction'],
    reference: json['reference'],
  );
}