url_params 1.0.0
url_params: ^1.0.0 copied to clipboard
This package helps to add query parameters to a Dart that appends the '?param1=one¶m2=two' to the url.
A library for Dart developers.
Created from templates made available by Stagehand under a BSD-style license.
Usage #
A simple usage example:
import 'package:url_params/src/base.dart';
main() {
var query = URLParams();
query.append('key', 'value');
var result = query.toUrl('https://cdn.example.io');
print(result);
}
Features and bugs #
Please file feature requests and bugs at the issue tracker.