isSameOrAfter method

bool isSameOrAfter(
  1. Date other
)

Return true if other isEqual or isAfter to this date

Implementation

bool isSameOrAfter(Date other) => this == other || isAfter(other);