isPast property
Returns whether the campaign has ended
Implementation
bool get isPast =>
endDate == null ? false : DateTime.now().compareTo(endDate!) > 0;
Returns whether the campaign has ended
bool get isPast =>
endDate == null ? false : DateTime.now().compareTo(endDate!) > 0;