canGoBack method

  1. @override
Future<bool> canGoBack(
  1. int webviewId
)
override

Implementation

@override
Future<bool> canGoBack(int webviewId) async {
  bool? b = await methodChannel
      .invokeMethod<bool?>('canGoBack', {"webviewId": webviewId});
  return b!;
}