update<T> method

void update<T>(
  1. String label,
  2. T value
)

Implementation

void update<T>(String label, T value) {
  _knobs[label]!.value = value;
  notifyListeners();
}