mirror of
https://github.com/git-touch/git-touch
synced 2025-03-07 20:57:44 +01:00
10 lines
186 B
Dart
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);
|
|
}
|
|
}
|