check method

dynamic check(
  1. dynamic x
)

Implementation

check(x) {
  for (var rule in _rules) {
    rule(x);
  }
}