url 2.0.0
url: ^2.0.0 copied to clipboard
Url class that implements Uri. Use this class in APIs to specify that an URL specifically is required.
Url class that implements Uri. Use this
class to specify an URL Url is required in your API,
not just an Uri.
Checks whether an URL is valid using
the validators package.
Usage #
import 'package:url/url.dart';
main() {
final url = Url.parse('https://pattle.im');
}