query_params

Last updated:

0 purchases

query_params Image
query_params Images
Add to Cart

Description:

query params

query_params #
A flutter package to create URL query parameters.
Getting Started #
Add this to your package's pubspec.yaml file:
query_params: '^0.6.1'
copied to clipboard
Install packages: #
with pub:
$ pub get
copied to clipboard
or with Flutter:
$ flutter packages get
copied to clipboard
Import it: #
import 'package:query_params/query_params.dart';
copied to clipboard
Implement it: #
URLQueryParams queryParams = new URLQueryParams();

queryParams.append('value1',"1");
queryParams.append('value2',"myString");

print(queryParams.toString()); // value1=1&value2=myString
copied to clipboard
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.