all static method

AbstractCheck all(
  1. Iterable<AbstractCheck> checks,
  2. {String? name}
)

Creates a check that succeeds if all of checks succeed.

This can be used to group checks that are commonly used together into a single, reusable check.

Implementation

static AbstractCheck all(Iterable<AbstractCheck> checks, {String? name}) =>
    _GroupCheck(checks, name: name);