contains method

bool contains(
  1. Type key
)
inherited

Checks if a builder is present in the factory.

Implementation

bool contains(KEY key) {
  return _builders.containsKey(key);
}