QuillToolbar constructor

const QuillToolbar({
  1. required List<Widget> children,
  2. double toolbarHeight = 36,
  3. WrapAlignment toolbarIconAlignment = WrapAlignment.center,
  4. double toolbarSectionSpacing = 4,
  5. bool multiRowsDisplay = true,
  6. Color? color,
  7. FilePickImpl? filePickImpl,
  8. Locale? locale,
  9. Key? key,
})

Implementation

const QuillToolbar({
  required this.children,
  this.toolbarHeight = 36,
  this.toolbarIconAlignment = WrapAlignment.center,
  this.toolbarSectionSpacing = 4,
  this.multiRowsDisplay = true,
  this.color,
  this.filePickImpl,
  this.locale,
  Key? key,
}) : super(key: key);