disableBodyMaskDetection static method

Future<void> disableBodyMaskDetection()

Implementation

static Future<void> disableBodyMaskDetection() async {
  try {
    await _channel.invokeMethod<void>('disableBodyMaskDetection');
  } on PlatformException catch (e) {
    throw BodyDetectionException(e.code, e.message);
  }
}