enablePoseDetection static method

Future<void> enablePoseDetection()

Implementation

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