clearWhere method

void clearWhere(
  1. bool test(
    1. Object? flag,
    2. Set<Object?> refs
    )
)

Implementation

void clearWhere(
        bool Function(
          Object? flag,
          Set<Object?> refs,
        ) test) =>
    _flags.removeWhere(test);