withFixedFactor method

VxTable withFixedFactor(
  1. double fixedFactor
)

Implementation

VxTable withFixedFactor(double fixedFactor) {
  columnWidths = children.asMap().map((key, value) =>
      MapEntry<int, TableColumnWidth>(key, FixedColumnWidth(fixedFactor)));
  return this;
}