static bool isValidDate(String input) { try { final format = DateFormat('dd/MM/yyyy'); final date = format.parseStrict(input); return true; } catch (e) { return false; } }