isValidDate static method

bool isValidDate(
  1. String input
)

Implementation

static bool isValidDate(String input) {
  try {
    final format = DateFormat('dd/MM/yyyy');

    final date = format.parseStrict(input);

    return true;
  } catch (e) {
    return false;
  }
}