removeAction method

bool removeAction(
  1. ComponentAction<Intent> action
)

Implementation

bool removeAction(ComponentAction action) {
  final removedAction = _actions.remove(action.intentType);

  return removedAction != null;
}