allowNavigationRequest method
Implementation
@override
Future<void> allowNavigationRequest(
int webviewId,
int requestId,
bool isAllowed,
) async {
return await methodChannel.invokeMethod<void>('allowNavigationRequest', {
"webviewId": webviewId,
"requestId": requestId,
"isAllowed": isAllowed,
});
}