toJQState method
Implementation
JQState toJQState() {
switch (this) {
case 'ENABLED':
return JQState.enabled;
case 'DISABLED':
return JQState.disabled;
}
throw Exception('$this is not known in enum JQState');
}
JQState toJQState() {
switch (this) {
case 'ENABLED':
return JQState.enabled;
case 'DISABLED':
return JQState.disabled;
}
throw Exception('$this is not known in enum JQState');
}