ButtonRow constructor

const ButtonRow(
  1. LightHtmlEditorController controller,
  2. List<String> availableColors,
  3. List<Widget> additionalButtons, {
  4. Key? key,
  5. List<ButtonRowType> availableButtons = ButtonRowType.values,
  6. required EditorDecoration decoration,
})

Implementation

const ButtonRow(
  this.controller,
  this.availableColors,
  this.additionalButtons, {
  Key? key,
  this.availableButtons = ButtonRowType.values,
  required this.decoration,
}) : super(key: key);