applyCafDocumentDetector method
Future<bool>
applyCafDocumentDetector(
- CafDocumentDetectorConfiguration documentDetectorConfiguration
override
Implementation
@override
Future<bool> applyCafDocumentDetector(
CafDocumentDetectorConfiguration documentDetectorConfiguration,
) async {
final result = await methodChannel.invokeMethod<bool>('applyCafDocumentDetector', {
"jsonString": jsonEncode(documentDetectorConfiguration),
});
return result == true;
}