1
0
mirror of https://github.com/git-touch/git-touch synced 2025-03-07 20:57:44 +01:00

14 lines
237 B
Dart
Raw Normal View History

2019-12-12 21:06:12 +08:00
extension MyString<T extends String> on String {
2019-12-15 00:08:12 +08:00
int get toInt {
return int.parse(this);
}
2019-12-12 21:06:12 +08:00
String get urlencode {
return Uri.encodeComponent(this);
}
String get urldecode {
return Uri.decodeComponent(this);
}
}