callWidthForLoop function

double callWidthForLoop(
  1. List ll
)

Implementation

double callWidthForLoop(List<dynamic> ll) {
  double toReturn = 0;
  for (int i = 0; i < ll.length - 1; i++) {
    if (toReturn < ll[i].length) toReturn = ll[i].length;
  }
  // toReturn = toReturn + ll[ll.length - 1];
  toReturn = toReturn * 7;

  return toReturn;
}