fontWeight method
Implementation
@ControllerProps(NodeProps.kFontWeight)
void fontWeight(String weight) {
var fontWeight = parseFontWeight(weight);
if (fontWeight != _fontWeight) {
_fontWeight = fontWeight;
markDirty();
}
}
@ControllerProps(NodeProps.kFontWeight)
void fontWeight(String weight) {
var fontWeight = parseFontWeight(weight);
if (fontWeight != _fontWeight) {
_fontWeight = fontWeight;
markDirty();
}
}