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