Latin.fromJson constructor

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

Implementation

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