validateDates static method
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);
}