toValue method
Implementation
String toValue() {
switch (this) {
case SuggesterFuzzyMatching.none:
return 'none';
case SuggesterFuzzyMatching.low:
return 'low';
case SuggesterFuzzyMatching.high:
return 'high';
}
}
String toValue() {
switch (this) {
case SuggesterFuzzyMatching.none:
return 'none';
case SuggesterFuzzyMatching.low:
return 'low';
case SuggesterFuzzyMatching.high:
return 'high';
}
}