capture method
Future<String?>
capture(
- dynamic withRecognize,
- dynamic withAnalyze,
- dynamic filterFields
override
Implementation
@override
Future<String?> capture(withRecognize, withAnalyze, filterFields) async {
final msg = await methodChannel.invokeMethod<String>('capture', { 'withRecognize': withRecognize, 'withAnalyze': withAnalyze, 'filterFields': filterFields});
return msg;
}