ServerWelcome constructor
Implementation
ServerWelcome(this.peer, [List<int>? peers]) : peers = peers ?? const [] {
if (this.peers.contains(peer)) {
throw const FormatException(
'welcome roster must exclude the joining peer',
);
}
}