toNums static method

Iterable<num?> toNums(
  1. Iterable list, {
  2. num? defaultValue,
})

Implementation

static Iterable<num?> toNums(Iterable list, {num? defaultValue}) =>
    list.map((v) => toNum(v, defaultValue: defaultValue));