contentSize method
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);
}