showCursor method

VxSelectableTextBuilder showCursor(
  1. bool showCursor
)

Whether to show cursor.

The cursor refers to the blinking caret when the EditableText is focused.

Implementation

VxSelectableTextBuilder showCursor(bool showCursor) {
  _showCursor = showCursor;
  return this;
}