findPropertyAsDateTimeList method
Finds a property with keys
as List<DateTime>.
def
The default value if keys
not found.
Implementation
List<DateTime>? findPropertyAsDateTimeList(List<String> keys,
[List<DateTime>? def]) =>
findPropertyAs(
keys, (v) => parseDateTimeFromInlineList(v, ',', def), def);