isMidnight property

bool get isMidnight

Check if date hour and minutes is not equeals to midnight

Implementation

bool get isMidnight {
  return (this.hour == 0 && this.minute == 0 && this.second == 0);
}