findPropertyAsIntList method

List<int>? findPropertyAsIntList(
  1. List<String> keys, [
  2. List<int>? def
])

Finds a property with keys as List<int>.

def The default value if keys not found.

Implementation

List<int>? findPropertyAsIntList(List<String> keys, [List<int>? def]) =>
    findPropertyAs(keys, (v) => parseIntsFromInlineList(v, ',', def), def);