bold method

PrintColumn bold()

Creates a bold version of this column.

Returns a copy of this column with bold font weight.

Implementation

PrintColumn bold() {
  return copyWith(fontWeight: FontWeight.bold);
}