startSharedSecure function

Future<HttpServer> Function(dynamic, int) startSharedSecure(
  1. SecurityContext securityContext
)

Implementation

Future<HttpServer> Function(dynamic, int) startSharedSecure(
    SecurityContext securityContext) {
  return (address, int port) => HttpServer.bindSecure(
      address ?? '127.0.0.1', port, securityContext,
      shared: true);
}