This repository has been archived on 2022-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
app/lib/components/string_extension.dart

5 lines
79 B
Dart
Raw Normal View History

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