isValidPort static method

bool isValidPort(
  1. int port
)

Validates a port number Range: 0-65535

Implementation

static bool isValidPort(int port) => port >= 0 && port <= 65535;