getValue method

dynamic getValue()

Converts this enum's values to String.

Implementation

dynamic getValue() {
  switch (this) {
    case TranslateConversations.off:
      return false;
    case TranslateConversations.on:
      return true;
    case TranslateConversations.auto:
      return 'auto';
  }
}