shouldNotify method

bool shouldNotify()

If DateTime.now() is after nextDisplayAt, this returns true.

Implementation

bool shouldNotify() {
  return _notification.shouldNotify(DateTime.now());
}