clear method

void clear()

Implementation

void clear() {
  if (value.isNotEmpty) {
    value.clear();
    notifyListeners();
  }
}