FloatingToolbarWidget constructor

const FloatingToolbarWidget({
  1. Key? key,
  2. Color backgroundColor = Colors.black,
  3. required Color toolbarActiveColor,
  4. Color? toolbarIconColor,
  5. double toolbarElevation = 0,
  6. Color? toolbarShadowColor,
  7. required List<ToolbarItem> items,
  8. required EditorState editorState,
  9. required TextDirection textDirection,
})

Implementation

const FloatingToolbarWidget({
  super.key,
  this.backgroundColor = Colors.black,
  required this.toolbarActiveColor,
  this.toolbarIconColor,
  this.toolbarElevation = 0,
  this.toolbarShadowColor,
  required this.items,
  required this.editorState,
  required this.textDirection,
});