TcpScanner constructor
TcpScanner({})
Implementation
TcpScanner({
required this.hostRange,
required this.ports,
this.timeout = const Duration(seconds: 1),
this.debug = false,
this.maxJobs,
}) {
if (ports.isEmpty) {
throw ArgumentError('Ports list cannot be empty');
}
}