change method

void change(
  1. T? value
)

Implementation

void change(T? value) {
  this.value =  value;
  notifyListeners();
}