getByServices method
Get addresses supporting specific services
Implementation
List<NetworkAddress> getByServices(int services) {
return addressList.where((addr) => (addr.services & services) != 0).toList();
}
Get addresses supporting specific services
List<NetworkAddress> getByServices(int services) {
return addressList.where((addr) => (addr.services & services) != 0).toList();
}