touch method

void touch()

Marks all registered fields as touched.

Implementation

void touch() {
  for (final field in _fields.values) {
    field.touch();
  }
}