flutter difference between dates is the same in for loop code example

Example 1: fluter check that date is greater than another date

var now = new DateTime.now();
var berlinWallFellDate = new DateTime.utc(1989, 11, 9);
// 0 denotes being equal positive value greater and negative value being less
if(berlinWallFellDate.compareTo(now)>0)
{
  //peform logic here.....
}

Example 2: compare date month and year in datetime in flutter

Since I asked this, extension methods have been released in Dart. I would now 
implement option 1 as an extension method:

extension DateOnlyCompare on DateTime {
  bool isSameDate(DateTime other) {
    return this.year == other.year && this.month == other.month
           && this.day == other.day;
  }
}

About Extensions :
https://dart.dev/guides/language/extension-methods

Tags:

Misc Example