every method

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

Implementation

bool every(bool Function(E element) test) => value.every(test);