CoherenceInstance.fromJson constructor

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

Implementation

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