getCellPadding method

double? getCellPadding(
  1. int cellindex
)

Implementation

double? getCellPadding(int cellindex) {
  double? pad = 0;
  if (cellpadding.containsKey(cellindex)) pad = cellpadding[cellindex];
  return pad;
}