isExpired method

bool isExpired()

//////////// //////////// 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;
}