getValue method

dynamic getValue()

Converts this enum's values to String.

Implementation

dynamic getValue() => switch (this) {
  TranslateConversations.off => false,
  TranslateConversations.on => true,
  TranslateConversations.auto => 'auto',
};