removeFromGroup abstract method

void removeFromGroup(
  1. String groupName,
  2. String event
)

Removes an event from a named group.

If the event isn't in the group or the group doesn't exist, this is a no-op.

  • groupName: The name of the group.
  • event: The event name to remove.

Example:

events.removeFromGroup('auth', 'user.login');

Implementation

void removeFromGroup(String groupName, String event);