setHasNavigationDecision method

  1. @override
Future<void> setHasNavigationDecision(
  1. int webviewId,
  2. bool hasNavigationDecision
)
override

Implementation

@override
Future<void> setHasNavigationDecision(
    int webviewId, bool hasNavigationDecision) async {
  return await methodChannel.invokeMethod<void>('setHasNavigationDecision', {
    "webviewId": webviewId,
    "hasNavigationDecision": hasNavigationDecision
  });
}