EditorToolbarState constructor

const EditorToolbarState({
  1. required bool compact,
  2. required bool canUndo,
  3. required bool canRedo,
  4. required bool hasSelection,
})

Implementation

const EditorToolbarState({
  required this.compact,
  required this.canUndo,
  required this.canRedo,
  required this.hasSelection,
});