(family: string)
| 74 | } |
| 75 | |
| 76 | public withFontFamily(family: string): Font { |
| 77 | return new Font(family, this.fontSize, this.fontStyle, this.fontWeight, this.fontScale, this.fontVariationSettings); |
| 78 | } |
| 79 | |
| 80 | public withFontStyle(style: FontStyleType): Font { |
| 81 | return new Font(this.fontFamily, this.fontSize, style, this.fontWeight, this.fontScale, this.fontVariationSettings); |
no outgoing calls
no test coverage detected