NetworkAddress constructor
NetworkAddress({})
Implementation
NetworkAddress({
this.timestamp = 0,
required this.services,
required this.ip,
required this.port,
}) {
if (ip.length != 16) {
throw ArgumentError('IP address must be 16 bytes');
}
}