ServerParentRoute constructor

ServerParentRoute({
  1. required String className,
  2. required ServerImports importPath,
  3. required String routePath,
  4. required List<ServerChildRoute> routes,
  5. required List<ServerParam> params,
  6. required ServerRouteAnnotations annotations,
  7. required int index,
  8. required InstanceType type,
})

Implementation

ServerParentRoute({
  required this.className,
  required this.importPath,
  required this.routePath,
  required this.routes,
  required this.params,
  required this.annotations,
  required this.index,
  required this.type,
});