findPropertyAsDateTimeList method

List<DateTime>? findPropertyAsDateTimeList(
  1. List<String> keys, [
  2. List<DateTime>? def
])

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