1
0
mirror of https://github.com/git-touch/git-touch synced 2025-01-31 08:04:51 +01:00
2019-12-15 00:08:12 +08:00

14 lines
237 B
Dart

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