TextSelectionThemeData constructor

const TextSelectionThemeData({
  1. Color? cursorColor,
  2. Color? selectionColor,
  3. Color? selectionHandleColor,
})

Creates the set of properties used to configure TextFields.

Implementation

const TextSelectionThemeData({
  this.cursorColor,
  this.selectionColor,
  this.selectionHandleColor,
});