parameters property

Map<String, String?> get parameters

Retrieves the parameters associated with the current route.

Implementation

Map<String, String?> get parameters => rootController.rootDelegate.parameters;
set parameters (Map<String, String?> newParameters)

Sets the parameters for navigation.

Implementation

set parameters(Map<String, String?> newParameters) =>
    rootController.parameters = newParameters;