where method

  1. @override
Collection<E> where(
  1. bool test(
    1. E element
    )
)
override

Implementation

@override
Collection<E> where(bool Function(E element) test) =>
    SyncCollection(value.where(test).toList());