remove method

void remove(
  1. IFactory factory
)
inherited

Removes a factory from the list of embedded factories.

  • factory the factory to remove.

Implementation

void remove(IFactory factory) {
  _factories.remove(factory);
}