Validates a port number Range: 0-65535
static bool isValidPort(int port) => port >= 0 && port <= 65535;