port property

int? port

Server's port

@return the port number where the server is listening

Implementation

int? get port {
  if (httpServer == null) {
    return null;
  }
  return httpServer!.port;
}