presentFaceDetection method

  1. @override
Future<String?> presentFaceDetection()
override

Presents the face detection UI and returns a base64 encoded image

Implementation

@override
Future<String?> presentFaceDetection() async {
  final base64Image = await methodChannel.invokeMethod<String>(
    'presentFaceDetection',
  );
  return base64Image;
}