reset method

void reset()

Implementation

void reset() {
  clearError();
  if (value != null) {
    value?.reset();
    notifyListeners();
  }
}