GroundedBottomBar constructor

const GroundedBottomBar({
  1. Key? key,
  2. required ProImageEditorConfigs configs,
  3. dynamic undo()?,
  4. dynamic redo()?,
  5. required dynamic done(),
  6. required dynamic close(),
  7. bool enableUndo = false,
  8. bool enableRedo = false,
})

Constructor for the GroundedBottomBar.

Requires the configs, done, and close parameters, with optional parameters for undo and redo functionality.

Implementation

const GroundedBottomBar({
  super.key,
  required this.configs,
  this.undo,
  this.redo,
  required this.done,
  required this.close,
  this.enableUndo = false,
  this.enableRedo = false,
});