getPropertyAsDateTimeList method
Gets a property with key
as List<DateTime>.
def
The default value if key
not found.
Implementation
List<DateTime>? getPropertyAsDateTimeList(String key,
[List<DateTime>? def]) =>
getPropertyAs(key, (v) => parseDateTimeFromInlineList(v, ',', def), def);