ServerApp constructor

ServerApp({
  1. required String className,
  2. required ServerImports importPath,
  3. required String constructor,
  4. required List<ServerParam> params,
  5. required ServerAppAnnotation appAnnotation,
  6. required ServerRouteAnnotations globalRouteAnnotations,
  7. required bool isSecure,
  8. required ServerAppObservers observers,
})

Implementation

ServerApp({
  required this.className,
  required this.importPath,
  required this.constructor,
  required this.params,
  required this.appAnnotation,
  required this.globalRouteAnnotations,
  required this.isSecure,
  required this.observers,
});