SyslogUdpClient constructor

SyslogUdpClient({
  1. required InternetAddress address,
  2. int port = 514,
  3. SyslogTags? tags,
  4. bool useRfc5424 = false,
})

Create a new syslog client. It should be closed by calling close.

Implementation

SyslogUdpClient({
  required this.address,
  this.port = 514,
  this.tags,
  this.useRfc5424 = false,
});