removeHtmlTags property
String
get
removeHtmlTags
Removes all HTML tags from the string.
Implementation
String get removeHtmlTags => replaceAll(RegExp(r'<[^>]*>'), '');
Removes all HTML tags from the string.
String get removeHtmlTags => replaceAll(RegExp(r'<[^>]*>'), '');