toInts static method

Iterable<int?> toInts(
  1. Iterable list, {
  2. int? defaultValue,
})

Implementation

static Iterable<int?> toInts(Iterable list, {int? defaultValue}) =>
    list.map((v) => toInt(v, defaultValue: defaultValue));