AngelHttp.fromSecurityContext constructor
AngelHttp.fromSecurityContext(
- Angel app,
- SecurityContext context, {
- bool useZone = true,
Implementation
factory AngelHttp.fromSecurityContext(Angel app, SecurityContext context,
{bool useZone = true}) {
return AngelHttp._(app, (address, int port) {
return HttpServer.bindSecure(address, port, context);
}, useZone);
}