loadJson method
override
Reconfigures this knob based on the provided deserialized JSON.
Implementation
@override
void loadJson(Map<String, dynamic> decodedJson) {
final val = decodedJson['value'];
if (val is String) {
setValueFromString(val);
} else {
value = val as int;
}
}