DeepLinkResult constructor

const DeepLinkResult({
  1. required String route,
  2. Map<String, dynamic> queryParams = const {},
})

Creates a DeepLinkResult with the parsed route and query parameters.

Implementation

const DeepLinkResult({
  required this.route,
  this.queryParams = const {},
});