contentSize method

Size contentSize(
  1. int i,
  2. int j
)

Implementation

Size contentSize(int i, int j) {
  final width =
      (columnWidths != null ? columnWidths![j] : contentCellWidth) ??
          base.contentCellWidth!;
  final height = (rowHeights != null ? rowHeights![i] : contentCellHeight) ??
      base.contentCellHeight!;
  return Size(width, height);
}