Server constructor
const
Server({
- required ServerFetch fetch,
- ServerHook? onStart,
- ServerHook? onStop,
- ServerErrorHook? onError,
Creates a server with a mandatory request handler and optional hooks.
Implementation
const Server({required this.fetch, this.onStart, this.onStop, this.onError});