RcRouteParameters constructor

RcRouteParameters({
  1. required Uri path,
  2. required Map<String, String> pathParameters,
  3. required Map<String, String> queryParameters,
  4. Object arguments = '',
})

Implementation

RcRouteParameters({
  required this.path,
  required this.pathParameters,
  required this.queryParameters,
  this.arguments = '',
});