toMessageFormatValue method

MessageFormatValue toMessageFormatValue()

Implementation

MessageFormatValue toMessageFormatValue() {
  switch (this) {
    case 'json':
      return MessageFormatValue.json;
    case 'json-unformatted':
      return MessageFormatValue.jsonUnformatted;
  }
  throw Exception('$this is not known in enum MessageFormatValue');
}