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

extension StringExtensions on String {
Uri toUri() => Uri.tryParse(this);
}