canGoForward method

  1. @override
Future<bool> canGoForward()
override

Checks whether there's a forward history item.

Implementation

@override
Future<bool> canGoForward() => _channel
    .invokeMethod<bool>('canGoForward')
    .then((bool? result) => result!);