isValidDateFormat static method

bool isValidDateFormat(
  1. String date
)

Validates the date format (YYYY-MM-DD).

Implementation

static bool isValidDateFormat(String date) =>
    RegExp(r'^\d{4}-\d{2}-\d{2}$').hasMatch(date);