TextAreaCursorStyle constructor
TextAreaCursorStyle({
- Color? color,
- CursorShape shape = CursorShape.block,
- bool blink = true,
- Duration blinkSpeed = const Duration(milliseconds: 500),
Implementation
TextAreaCursorStyle({
this.color,
this.shape = CursorShape.block,
this.blink = true,
this.blinkSpeed = const Duration(milliseconds: 500),
});