updateKnobValue<T> method

  1. @Deprecated('Use [knobs.updateValue] instead.')
void updateKnobValue<T>(
  1. String label,
  2. T value
)

Updates Knob.value using the label to find the Knob.

Implementation

@Deprecated('Use [knobs.updateValue] instead.')
void updateKnobValue<T>(String label, T value) {
  knobs.updateValue<T>(label, value);
}