canGoBack method

Future<bool?> canGoBack()

Implementation

Future<bool?> canGoBack() async {
  return _channel.invokeMethod<bool>(
    'canGoBack',
    <String, dynamic>{},
  );
}