hasUpdatedLaterThan method Null safety

bool hasUpdatedLaterThan(
  1. int time
)

Implementation

bool hasUpdatedLaterThan(int time) {
  return hasCreatedLaterThan(time) && updatedAt > time;
}