isExpired method
//////////// //////////// Checks if the report has expired
Implementation
// II.E - Helper Methods
///////////////
/// Checks if the report has expired
bool isExpired() {
return Timestamp.now().compareTo(expiresAt) > 0;
}
//////////// //////////// Checks if the report has expired
// II.E - Helper Methods
///////////////
/// Checks if the report has expired
bool isExpired() {
return Timestamp.now().compareTo(expiresAt) > 0;
}