every property

({dynamic Function<S extends T>(dynamic predicate(T, num, List<T>), [dynamic thisArg]) $1, bool Function(Object? predicate(T, num, List<T>), [dynamic thisArg]) $2}) every

Overload accessor: $1, $2

Implementation

({
  /// Determines whether all the members of an array satisfy the specified test.
  ///  @param predicate A function that accepts up to three arguments. The every method calls
  ///  the predicate function for each element in the array until the predicate returns a value
  ///  which is coercible to the Boolean value false, or until the end of the array.
  ///  @param thisArg An object to which the this keyword can refer in the predicate function.
  ///  If thisArg is omitted, undefined is used as the this value.
  _i2.dynamic Function<S extends T>(
    _i2.dynamic Function(
      T,
      _i2.num,
      _i2.List<T>,
    ) predicate, [
    _i2.dynamic thisArg,
  ]) $1,

  /// Determines whether all the members of an array satisfy the specified test.
  ///  @param predicate A function that accepts up to three arguments. The every method calls
  ///  the predicate function for each element in the array until the predicate returns a value
  ///  which is coercible to the Boolean value false, or until the end of the array.
  ///  @param thisArg An object to which the this keyword can refer in the predicate function.
  ///  If thisArg is omitted, undefined is used as the this value.
  _i2.bool Function(
    _i2.Object? Function(
      T,
      _i2.num,
      _i2.List<T>,
    ) predicate, [
    _i2.dynamic thisArg,
  ]) $2,
}) get every => (
      $1: _every$1,
      $2: _every$2,
    );