1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-23 23:07:53 +01:00
2019-12-12 21:06:12 +08:00

10 lines
186 B
Dart

extension MyString<T extends String> on String {
String get urlencode {
return Uri.encodeComponent(this);
}
String get urldecode {
return Uri.decodeComponent(this);
}
}