isPast property

bool isPast

Returns whether the campaign has ended

Implementation

bool get isPast =>
    endDate == null ? false : DateTime.now().compareTo(endDate!) > 0;