hasUpdatedLaterThan method

bool hasUpdatedLaterThan(
  1. int timestamp
)

Implementation

bool hasUpdatedLaterThan(int timestamp) {
  return createdAt > timestamp && updatedAt > timestamp;
}