newAddrBook function
Creates a new memory-based address book implementation.
Implementation
MemoryAddrBook newAddrBook({int maxUnconnectedAddrs = 1000000}) {
return MemoryAddrBook(maxUnconnectedAddrs: maxUnconnectedAddrs);
}
Creates a new memory-based address book implementation.
MemoryAddrBook newAddrBook({int maxUnconnectedAddrs = 1000000}) {
return MemoryAddrBook(maxUnconnectedAddrs: maxUnconnectedAddrs);
}