differenceInDays method

int differenceInDays(
  1. DateTime other
)

Returns difference between two dates in days

Implementation

int differenceInDays(DateTime other) {
  return DateTime(year, month, day)
      .difference(DateTime(other.year, other.month, other.day))
      .inDays;
}