executePushAction method
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}');
}
}