CInverse constructor
CInverse({})
Implementation
CInverse({
required int x,
required int y,
CFont font = CFont.tss16,
required String content,
CRotation rotation = CRotation.rotation_0,
}) {
_x = x;
_y = y;
_font = font;
_content = content;
_rotation = rotation;
}