NavLinkResult constructor

NavLinkResult({
  1. required String matchedRoutePath,
  2. required Map<String, String> pathParameters,
  3. required Map<String, String> queryParameters,
})

Implementation

NavLinkResult({
  required this.matchedRoutePath,
  required this.pathParameters,
  required this.queryParameters,
});