BulletListPrinter is able to render a list.
| 53 | |
| 54 | // BulletListPrinter is able to render a list. |
| 55 | type BulletListPrinter struct { |
| 56 | Items []BulletListItem |
| 57 | TextStyle *Style |
| 58 | Bullet string |
| 59 | BulletStyle *Style |
| 60 | Writer io.Writer |
| 61 | } |
| 62 | |
| 63 | // WithItems returns a new list with specific Items. |
| 64 | func (l BulletListPrinter) WithItems(items []BulletListItem) *BulletListPrinter { |
nothing calls this directly
no outgoing calls
no test coverage detected