presentFaceDetection method
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;
}