mirror of
https://github.com/git-touch/git-touch
synced 2025-02-23 23:07:53 +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);
|
|
}
|
|
}
|