toDateTimes static method
Implementation
static Iterable<DateTime?> toDateTimes(Iterable list,
{String format = defDateTimeFormat,
String? locale,
bool isUtc = false,
DateTime? defaultValue}) =>
list.map((v) => toDateTime(v,
format: format,
locale: locale,
isUtc: isUtc,
defaultValue: defaultValue));