every method

bool every(
  1. bool test(
    1. T element
    )
)

Implementation

bool every(bool test(T element)) => _list.every(test);