executeAction method

Future<bool?> executeAction(
  1. String action
)

This executes actions on the backgroudn isolate. Note: the action's name does not have to correspond to action names given to the notification.

Implementation

Future<bool?> executeAction(String action) {
  return _platform.executeAction(action);
}