minIntrinsicWidth method
Calculates the minimum intrinsic width by taking the max of cell mins plus padding.
Ensures columns are wide enough for content without truncation.
Implementation
@override
double minIntrinsicWidth(Iterable<RenderBox> cells, double containerWidth) {
double result = 0.0;
for (final RenderBox cell in cells) {
result = max(result, cell.getMinIntrinsicWidth(double.infinity));
}
return result + _padding;
}