sumInt method

int sumInt()

Implementation

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