Sums a list of nullable strings representing numbers
static Decimal addStrList(List<String?> aList) { return aList.map((e) => _safeParse(e)).fold(Decimal.zero, (a, b) => a + b); }