enableBodyMaskDetection static method

Future<void> enableBodyMaskDetection()

Implementation

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