updateSample method
- int? input
Updates the sample variable.
Implementation
void updateSample(int? input) {
if (input == null) return;
sample = input;
notifyListeners();
}
Updates the sample variable.
void updateSample(int? input) {
if (input == null) return;
sample = input;
notifyListeners();
}