bool isHTML(String str) { final RegExp htmlRegExp = RegExp('<[^>]*>', multiLine: true, caseSensitive: false); return htmlRegExp.hasMatch(str); }