RecognizedText.from constructor

RecognizedText.from(
  1. Map json
)

Implementation

factory RecognizedText.from(Map json) => RecognizedText(
      text: json['text'] as String,
      blocks: toBlocks(json['blocks']),
    );