any method

bool any(
  1. bool test(
    1. TAbstractControl element
    )
)
inherited

Implementation

bool any(bool test(TAbstractControl element)) {
  final result = this.controls.any(test);
  this.onChange.add(this);
  return result;
}