NUITextStyle constructor
NUITextStyle({})
Implementation
NUITextStyle({
required String color,
double size = 14,
String? font,
bool bold = false,
bool underline = false,
bool italic = false}){
_color = color;
_size = size;
_font = font;
_bold = bold;
_underline = underline;
_italic = italic;
}