toListOfDateTime method

List<DateTime> toListOfDateTime(
  1. Iterable list
)

Implementation

List<DateTime> toListOfDateTime(Iterable list) {
  return list.map(_toDateTime).toList().cast();
}