isSameMinute method

bool isSameMinute(
  1. DateTime other
)

Check if this date is in the same minute than other

Implementation

bool isSameMinute(DateTime other) => startOfMinute == other.startOfMinute;