WithTextStyle returns a new HeaderPrinter with changed
(style *Style)
| 33 | |
| 34 | // WithTextStyle returns a new HeaderPrinter with changed |
| 35 | func (p HeaderPrinter) WithTextStyle(style *Style) *HeaderPrinter { |
| 36 | p.TextStyle = style |
| 37 | return &p |
| 38 | } |
| 39 | |
| 40 | // WithBackgroundStyle changes the background styling of the header. |
| 41 | func (p HeaderPrinter) WithBackgroundStyle(style *Style) *HeaderPrinter { |
no outgoing calls