Http3Response constructor
Http3Response({})
Creates an HTTP/3 response.
statusCode is required. headers defaults to an empty map and
body defaults to null.
Implementation
Http3Response({
required this.statusCode,
this.headers = const {},
this.body,
});