markAsTouched method

void markAsTouched(
  1. String name
)

Implementation

void markAsTouched(String name) {
  final state = _fields[name] as JarFieldState;
  _updateField(name, state.copyWith(isTouched: true));
}