removeOptionWhere method

void removeOptionWhere(
  1. bool test(
    1. Option<Object?>
    )
)
inherited

Removes all options for which the given test function returns true.

Implementation

void removeOptionWhere(final bool Function(Option<Object?>) test) =>
    _options.removeWhere(test);