smaller method

PrintColumn smaller([
  1. double decrease = 4.0
])

Creates a smaller version of this column.

  • decrease: Amount to decrease the font size by

Returns a copy of this column with decreased font size.

Implementation

PrintColumn smaller([double decrease = 4.0]) {
  return copyWith(fontSize: fontSize - decrease);
}