queryParams property
Query parameters of the current route only (1.5.0).
Path parameters are NOT included.
Usage: String? tab = Sint.queryParams['tab'];
Implementation
Map<String, String> get queryParams {
if (_shouldUseMock) return const {};
return rootController.rootDelegate.queryParams;
}