toTextTransformation method
Implementation
TextTransformation toTextTransformation() {
switch (this) {
case 'NONE':
return TextTransformation.none;
case 'COMPRESS_WHITE_SPACE':
return TextTransformation.compressWhiteSpace;
case 'HTML_ENTITY_DECODE':
return TextTransformation.htmlEntityDecode;
case 'LOWERCASE':
return TextTransformation.lowercase;
case 'CMD_LINE':
return TextTransformation.cmdLine;
case 'URL_DECODE':
return TextTransformation.urlDecode;
}
throw Exception('$this is not known in enum TextTransformation');
}