toValue method

String toValue()

Implementation

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