setCursorStyle method

void setCursorStyle(
  1. CursorStyle style, {
  2. bool blinking = false,
})

Sets the cursor style and whether it blinks.

Implementation

void setCursorStyle(CursorStyle style, {bool blinking = false}) {
  bindings.setCursorStyle(handle, style.value, blinking);
}