recognizeText method
Reads text in view (shop signs, labels). iOS only — Apple Vision.
Implementation
Future<List<UArTextResult>> recognizeText({List<String> languages = const <String>[], bool accurate = true}) async {
final List<Object?>? raw = await _invoke<List<Object?>>("recognizeText", <String, Object?>{"languages": languages, "accurate": accurate});
return _maps(raw).map(UArTextResult.fromMap).toList(growable: false);
}