mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
12 lines
302 B
Dart
12 lines
302 B
Dart
import 'package:html_unescape/html_unescape.dart';
|
|
|
|
final htmlEscape = HtmlUnescape();
|
|
|
|
extension UnescapeHtml on String {
|
|
String unescapeHtml() => htmlEscape.convert(this);
|
|
}
|
|
|
|
extension NullableUnescapeHtml on String? {
|
|
String? unescapeHtml() => this == null ? null : htmlEscape.convert(this!);
|
|
}
|