GroundedBottomBar constructor
const
GroundedBottomBar({
- Key? key,
- required ProImageEditorConfigs configs,
- dynamic undo()?,
- dynamic redo()?,
- required dynamic done(),
- required dynamic close(),
- bool enableUndo = false,
- 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,
});