(title string)
| 241 | } |
| 242 | |
| 243 | func (w *widgetBase) withTitle(title string) *widgetBase { |
| 244 | if w.Title == "" { |
| 245 | w.Title = title |
| 246 | } |
| 247 | |
| 248 | return w |
| 249 | } |
| 250 | |
| 251 | func (w *widgetBase) withTitleURL(titleURL string) *widgetBase { |
| 252 | if w.TitleURL == "" { |
no outgoing calls
no test coverage detected