isDateTimes static method
Implementation
static bool isDateTimes(Iterable list,
{String format = defDateTimeFormat,
String? locale,
bool isUtc = false}) =>
list.every(
(v) => isDateTime(v, format: format, locale: locale, isUtc: isUtc));