differenceInSeconds method

int differenceInSeconds(
  1. DateTime other
)

Returns difference between two dates in seconds

Implementation

int differenceInSeconds(DateTime other) {
  return DateTime(year, month, day)
      .difference(DateTime(other.year, other.month, other.day))
      .inSeconds;
}