ServerUniverseEdgeBase constructor

ServerUniverseEdgeBase({
  1. required RequestHandlerMore onError,
  2. required RequestHandler onNotFound,
  3. ServerUniverseLogType serverUniverseLogType = ServerUniverseLogType.info,
  4. String pathPrefix = "",
  5. int simultaneousProcessing = 1000000000,
  6. ServerUniversePlatformType serverUniversePlatformType = ServerUniversePlatformType.supabase,
})

Implementation

ServerUniverseEdgeBase({
  required this.onError,
  required this.onNotFound,
  super.serverUniverseLogType,
  super.pathPrefix,
  super.simultaneousProcessing,
  super.serverUniversePlatformType = ServerUniversePlatformType.supabase,
});