has method

bool has(
  1. String filterId
)

Returns true if filterId has a value.

Implementation

bool has(String filterId) {
  return _states[filterId]?.value != null;
}