RouteParams constructor

const RouteParams({
  1. required String path,
  2. Map<String, String>? pathParams,
  3. Map<String, String>? queryParams,
  4. String? matchedPattern,
  5. String? originalUri,
})

Implementation

const RouteParams({
  required this.path,
  this.pathParams,
  this.queryParams,
  this.matchedPattern,
  this.originalUri,
});