countdownToDate static method

String countdownToDate(
  1. DateTime targetDate
)

Implementation

static String countdownToDate(DateTime targetDate) {
  final now = DateTime.now();
  final difference = targetDate.difference(now);
  return '${difference.inDays} days left';
}