larger method
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);
}