DefaultCustomScrollCursor constructor

const DefaultCustomScrollCursor({
  1. Color cursorColor = Colors.black,
  2. Color borderColor = Colors.black,
  3. Color backgroundColor = Colors.white,
})

Constructor

Implementation

const DefaultCustomScrollCursor({
  Color cursorColor = Colors.black,
  Color borderColor = Colors.black,
  Color backgroundColor = Colors.white,
})  : _cursorColor = cursorColor,
      _borderColor = borderColor,
      _backgroundColor = backgroundColor;