change method

void change(
  1. dynamic value
)

Implementation

void change(value) {
  onChange?.call(value);
  notifyListeners();
}