removeGroup method

  1. @protected
void removeGroup({
  1. Entity groupEntity = const DefaultEntity(),
})

Removes the TDependencyGroup with the specified groupEntity from the state.

Implementation

@protected
@pragma('vm:prefer-inline')
void removeGroup({Entity groupEntity = const DefaultEntity()}) {
  _state.remove(groupEntity);
  UNSAFE:
  onChange.ifSome((self, some) => some.unwrap()()).end();
}