bindSecure static method

Future<HttpServer> bindSecure(
  1. dynamic address,
  2. int port,
  3. SecurityContext context, {
  4. int backlog = 0,
  5. bool v6Only = false,
  6. bool shared = false,
})

Implementation

static Future<HttpServer> bindSecure(
  dynamic address,
  int port,
  SecurityContext context, {
  int backlog = 0,
  bool v6Only = false,
  bool shared = false,
}) async {
  throw UnsupportedError('HttpServer unavailable on web');
}