Page constructor

Page([
  1. Map<String, String> parameters = const {}
])

Example:

Page({'limit': '10', 'offset': '20'}).addTo(url);

encodes into

?page[limit]=10&page[offset]=20

Implementation

Page([Map<String, String> parameters = const {}]) {
  addAll(parameters);
}