requestCameraPermission method
Requests camera permission
Implementation
@override
Future<bool> requestCameraPermission() async {
try {
final result = await methodChannel.invokeMethod<bool>(
'requestCameraPermission',
);
return result ?? false;
} on PlatformException catch (e) {
throw _handlePlatformException(e);
}
}