touch method
void
touch()
Marks all registered fields as touched.
Implementation
void touch() {
for (final field in _fields.values) {
field.touch();
}
}
Marks all registered fields as touched.
void touch() {
for (final field in _fields.values) {
field.touch();
}
}