validateDates static method

bool validateDates(
  1. String fromDate,
  2. String toDate
)

Implementation

static bool validateDates(String fromDate, String toDate) {
  final dateFormat = DateFormat("MM-dd-yyyy");
  final from = dateFormat.parse(fromDate);
  final to = dateFormat.parse(toDate);
  return !from.isAfter(to);
}