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