unignoreType method

void unignoreType(
  1. Type type
)

Removes the filter added with ignoreType.

Implementation

void unignoreType(Type type) {
  _typeFilters.remove(type);

  if (_typeFilters.isEmpty) {
    _filters.remove(_shouldIgnoreByType);
  }
}