capture method

  1. @override
Future<String?> capture(
  1. dynamic withRecognize,
  2. dynamic withAnalyze,
  3. 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;
}