(widgetStack)
| 318 | } |
| 319 | class ChainStack { |
| 320 | constructor(widgetStack) { |
| 321 | this.widgetStack = widgetStack; |
| 322 | } |
| 323 | backgroundColor(color) { |
| 324 | this.widgetStack.backgroundColor = color; |
| 325 | return this; |
nothing calls this directly
no outgoing calls
no test coverage detected