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