1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-05 03:59:48 +00:00
app-mirror-github/lib/components/string_extension.dart

4 lines
78 B
Dart
Raw Normal View History

2021-06-04 09:34:25 +00:00
extension StringExtensions on String {
Uri toUri() => Uri.tryParse(this);
}