showCursor method
void
showCursor(})
Shows the cursor at (x, y) on behalf of owner, applying style, color, and blinking.
Implementation
void showCursor(
Object owner,
int x,
int y, {
CursorStyle style = CursorStyle.block,
Color? color,
bool blinking = true,
}) {
_owner = owner;
_x = x;
_y = y;
_style = style;
if (color != null) {
_color = color;
}
_blinking = blinking;
_visible = true;
_applyCursor();
}