TextInputCursorStyle constructor
TextInputCursorStyle({
- Color? color,
- CursorShape shape = CursorShape.block,
- bool blink = true,
- Duration blinkSpeed = const Duration(milliseconds: 500),
Creates a cursor style with the specified options.
Defaults to a blinking block cursor.
Implementation
TextInputCursorStyle({
this.color,
this.shape = CursorShape.block,
this.blink = true,
this.blinkSpeed = const Duration(milliseconds: 500),
});