removeFromGroup abstract method
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);