Cursor constructor

Cursor({
  1. required Position position,
  2. Object? color,
  3. CursorShape shape = CursorShape.block,
  4. bool blink = true,
})

Implementation

Cursor({
  required this.position,
  this.color,
  this.shape = CursorShape.block,
  this.blink = true,
});