check method

bool check([
  1. bool warning = true
])

Implementation

bool check([bool warning = true]) {
  final _validate = validate();
  if (warning && _validate != true) {
    OverAlert.fillRequired();
  }

  return _validate;
}