disablePoseDetection static method

Future<void> disablePoseDetection()

Implementation

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