CodeSelectionStyle constructor

CodeSelectionStyle({
  1. Color? cursorColor,
  2. Color selectionColor = const Color(0x6E2195F3),
  3. Color cursorBubbleColor = Colors.blue,
})

Implementation

CodeSelectionStyle({
  this.cursorColor,
  this.selectionColor = const Color(0x6E2195F3),
  this.cursorBubbleColor = Colors.blue,
});