updateLastSeen method

void updateLastSeen()

Updates the lastSeen timestamp to the current time.

This method is typically called when the address is observed or used, indicating its continued availability.

Implementation

void updateLastSeen() =>
    lastSeen = DateTime.timestamp().millisecondsSinceEpoch;