capturePhoto method

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

Implementation

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