isAfterOrEqual method

bool isAfterOrEqual(
  1. DateTime other
)

Compare DateTime with DateTime greater than or equal.

Implementation

bool isAfterOrEqual(DateTime other) => compareTo(other) >= 0;