removeHtmlTags property

String get removeHtmlTags

Removes all HTML tags from the string.

Implementation

String get removeHtmlTags => replaceAll(RegExp(r'<[^>]*>'), '');