RouteInfo constructor

const RouteInfo({
  1. required String path,
  2. required String name,
  3. Map<String, dynamic> parameters = const {},
  4. Map<String, dynamic> queryParameters = const {},
})

Implementation

const RouteInfo({
  required this.path,
  required this.name,
  this.parameters = const {},
  this.queryParameters = const {},
});