style property
TypeStyle?
get
style
The text style properties
Implementation
figma.TypeStyle? get style {
if (node is figma.Text) return (node as figma.Text).style;
return null;
}
The text style properties
figma.TypeStyle? get style {
if (node is figma.Text) return (node as figma.Text).style;
return null;
}