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