withIosCaretStyle method

TestSuperEditorConfigurator withIosCaretStyle({
  1. double? width,
  2. Color? color,
  3. double? handleBallDiameter,
})

Implementation

TestSuperEditorConfigurator withIosCaretStyle({
  double? width,
  Color? color,
  double? handleBallDiameter,
}) {
  _config.iosCaretWidth = width;
  _config.iosHandleColor = color;
  _config.iosHandleBallDiameter = handleBallDiameter;
  return this;
}