isSameOrAfter method

bool isSameOrAfter(
  1. DateTime other
)

Return true if other isEqual or isAfter to this date

Implementation

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