ServerUniverseFunction constructor

ServerUniverseFunction({
  1. required String path,
  2. required RegExp method,
  3. required RequestHandler onRequest,
})

Implementation

ServerUniverseFunction({
  required this.path,
  required this.method,
  required this.onRequest,
});