(v: number | 'auto' | string | undefined)
| 737 | this.markDirty() |
| 738 | } |
| 739 | setFlexBasis(v: number | 'auto' | string | undefined): void { |
| 740 | this.style.flexBasis = parseDimension(v) |
| 741 | this.markDirty() |
| 742 | } |
| 743 | setFlexBasisPercent(v: number): void { |
| 744 | this.style.flexBasis = percentValue(v) |
| 745 | this.markDirty() |
nothing calls this directly
no test coverage detected