larger method

PrintColumn larger([
  1. double increase = 4.0
])

Creates a larger version of this column.

  • increase: Amount to increase the font size by

Returns a copy of this column with increased font size.

Implementation

PrintColumn larger([double increase = 4.0]) {
  return copyWith(fontSize: fontSize + increase);
}