contains method
Validate the value contains one of the values
Implementation
FormValidator contains(List<String> values) {
  _addRule("contains:${values.join(",")}");
  return this;
}Validate the value contains one of the values
FormValidator contains(List<String> values) {
  _addRule("contains:${values.join(",")}");
  return this;
}