MulticastConfiguration constructor

MulticastConfiguration({
  1. required IpAddress ipAddress,
  2. required int port,
  3. required int ttl,
  4. required bool autoStart,
})

Implementation

MulticastConfiguration({
  required this.ipAddress,
  required this.port,
  required this.ttl,
  required this.autoStart,
});