BurtSocket constructor

BurtSocket({
  1. required int? port,
  2. required Device device,
  3. SocketInfo? destination,
  4. bool quiet = false,
  5. Service? collection,
})

Creates a UdpSocket that follows BURT protocols.

Implementation

BurtSocket({
  required super.port,
  required this.device,
  super.destination,
  super.quiet,
  this.collection,
});