isDateTimes static method

bool isDateTimes(
  1. Iterable list, {
  2. String format = defDateTimeFormat,
  3. String? locale,
  4. bool isUtc = false,
})

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));