List<Validate> validators

ManagedValidators for this instance.

Source

List<Validate> get validators {
  if (isEnumeratedValue) {
    var total = new List.from(_validators);
    total.add(new Validate.oneOf(enumerationValueMap.values.toList()));
    return total;
  }

  return _validators;
}