executePushAction method

  1. @override
Future<void> executePushAction(
  1. GlobalKey<NavigatorState> navigatorKey
)
override

Implementation

@override
Future<void> executePushAction(GlobalKey<NavigatorState> navigatorKey) async {
  try {
    appNavigatorKey = navigatorKey;
    await methodChannel.invokeMethod('executePushAction');
  }
  on PlatformException catch(exception) {
    log.severe('Exception when executing the push action: ${exception.message}');
  }
}