url_params 1.0.1 copy "url_params: ^1.0.1" to clipboard
url_params: ^1.0.1 copied to clipboard

outdated

This package helps to add query parameters to a Dart that appends the '?param1=one&param2=two' to the url.

example/url_params_example.dart

import 'package:url_params/src/base.dart';

void main() {

  var query =  URLParams();
  query.append('key', 'value');
  var result = query.toUrl('https://cdn.example.io');
  print(result);
}
3
likes
0
points
29
downloads

Publisher

unverified uploader

Weekly Downloads

This package helps to add query parameters to a Dart that appends the '?param1=one&param2=two' to the url.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on url_params