Arabic.fromJson constructor

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

Implementation

factory Arabic.fromJson(Map<String, dynamic> json) => Arabic(
    confidence: json["confidence"],
    text: json["text"],
);