executePushAction method

  1. @override
Future<void> executePushAction()
override

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