OcrResult.fromJson constructor

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

Implementation

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