doesNotContain method

bool doesNotContain(
  1. Type key
)
inherited

Checks if a builder is absent in the factory.

Implementation

bool doesNotContain(KEY key) {
  return !contains(key);
}