fromJson static method
Creates a Confidence from a JSON string.
Implementation
static Confidence fromJson(String json) {
switch (json.toLowerCase()) {
case 'high':
return Confidence.high;
case 'medium':
return Confidence.medium;
case 'low':
return Confidence.low;
default:
return Confidence.low;
}
}