isDate property
bool
get
isDate
Whether this string is a recognizable date value.
Returns true for valid ISO 8601 date strings. Use this as a guard
before calling other date utilities on untrusted input.
Implementation
bool get isDate => dates.isDate(this);