all method

  1. @override
bool all(
  1. bool f(
    1. T
    )
)

Implementation

@override
bool all(bool Function(T) f) => every(f);