getCellWidth method

double? getCellWidth(
  1. int cellindex
)

Implementation

double? getCellWidth(int cellindex) {
  double? width = 0;
  if (widths.containsKey(cellindex)) width = widths[cellindex];
  return width;
}