CText constructor
CText({})
Implementation
CText({
CFont font = CFont.tss16,
CRotation rotation = CRotation.rotation_0,
required int textX,
required int textY,
required String content,
bool? bold,
bool? underline,
bool? mag,
}) {
_font = font;
_rotation = rotation;
_textX = textX;
_textY = textY;
_content = content;
_bold = bold;
_underline = underline;
_mag = mag;
}