copyWithValue method
Copy this object with a new value.
Implementation
@override
KnobNodeBase<T> copyWithValue({T? value}) {
return KnobNodeNumber<T>(
key: key,
description: description,
value: value ?? this.value,
min: min,
max: max,
);
}