UdpSocket constructor
- required int? port,
- bool quiet = false,
- SocketInfo? destination,
Opens a UDP socket on the given port that can send and receive data.
Implementation
UdpSocket({required int? port, this.quiet = false, this.destination}) :
_port = port;