removeWhere method

void removeWhere(
  1. bool test(
    1. BaseNarrativeModel
    )
)

Remove items matching a condition.

Implementation

void removeWhere(bool Function(BaseNarrativeModel) test) {
  _queue.removeWhere(test);
}