From f8320e072fc8f60e28ebc63b73fed70118342687 Mon Sep 17 00:00:00 2001 From: BullsEye <18664297+BullsEye34@users.noreply.github.com> Date: Tue, 27 Sep 2022 15:52:26 +0530 Subject: [PATCH] Change documentation of canGoForward() Previously, the method canGoForward() had the same documentation as canGoBack(). --- lib/src/base.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/base.dart b/lib/src/base.dart index 2fdc0384..b81bfb4b 100644 --- a/lib/src/base.dart +++ b/lib/src/base.dart @@ -239,7 +239,7 @@ class FlutterWebviewPlugin { /// Checks if webview can navigate back Future canGoBack() async => await _channel.invokeMethod('canGoBack'); - /// Checks if webview can navigate back + /// Checks if webview can navigate forward Future canGoForward() async => await _channel.invokeMethod('canGoForward');