isSameOrBefore method

bool isSameOrBefore(
  1. Date other
)

Return true if other isEqual or isBefore to this date

Implementation

bool isSameOrBefore(Date other) => this == other || isBefore(other);