withAndroidCaretStyle method

TestSuperEditorConfigurator withAndroidCaretStyle({
  1. double? width,
  2. Color? color,
})

Implementation

TestSuperEditorConfigurator withAndroidCaretStyle({
  double? width,
  Color? color,
}) {
  _config.androidCaretWidth = width;
  _config.androidCaretColor = color;
  return this;
}