sumInt method
Implementation
int sumInt() {
if (this == null) return 0;
var i = 0;
for (final x in this!) {
i += x.toInt();
}
return i;
}
int sumInt() {
if (this == null) return 0;
var i = 0;
for (final x in this!) {
i += x.toInt();
}
return i;
}