grow property

double? grow

The grow factor to use for this column.

Can be positive or null. See ColumnWidthBehavior for more details.

Implementation

double? get grow => _grow;
void grow=(double? value)

Implementation

set grow(double? value) {
  if (value != null) {
    value = math.max(1, value);
  }
  if (_grow != value) {
    _grow = value;
    notifyListeners();
  }
}