getPropertyAsDateTimeList method

List<DateTime>? getPropertyAsDateTimeList(
  1. String key, [
  2. List<DateTime>? def
])

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