dismissLivenessDetection method
Implementation
@override
Future<void> dismissLivenessDetection() async {
try {
await _channel.invokeMethod('dismissLivenessDetection');
} on PlatformException catch (e) {
throw LivenessException(e.code, e.message ?? 'Unknown platform error');
} catch (e) {
throw LivenessException('UNKNOWN_ERROR', e.toString());
}
}