removeOlderThan method
Remove addresses older than specified timestamp
Implementation
void removeOlderThan(int timestamp) {
addressList.removeWhere((addr) => addr.timestamp < timestamp);
}
Remove addresses older than specified timestamp
void removeOlderThan(int timestamp) {
addressList.removeWhere((addr) => addr.timestamp < timestamp);
}