CursorStyle constructor

const CursorStyle({
  1. required Color color,
  2. required Color backgroundColor,
  3. double width = 1.0,
  4. double? height,
  5. Radius? radius,
  6. Offset? offset,
  7. bool opacityAnimates = false,
  8. bool paintAboveText = false,
})

Implementation

const CursorStyle({
  required this.color,
  required this.backgroundColor,
  this.width = 1.0,
  this.height,
  this.radius,
  this.offset,
  this.opacityAnimates = false,
  this.paintAboveText = false,
});