isDate property
bool
get
isDate
Returns true if string is a date
Implementation
bool get isDate => this != null && DateTime.tryParse(this!) != null;
Returns true if string is a date
bool get isDate => this != null && DateTime.tryParse(this!) != null;