columnWidth property

double columnWidth

Implementation

double get columnWidth => _columnWidth;
void columnWidth=(double value)

Implementation

set columnWidth(double value) {
  var result = _groupCodes.firstWhereOrNull((element) => element.code == 41);
  if (result != null) {
    _columnWidth = value;
    result.value = value;
  }
}