GroundedMainBar constructor

const GroundedMainBar({
  1. Key? key,
  2. required ProImageEditorConfigs configs,
  3. required ProImageEditorCallbacks callbacks,
  4. required ProImageEditorState editor,
})

Constructor for the GroundedMainBar.

Requires configs, callbacks, and editor to manage the state of the image editor.

Implementation

const GroundedMainBar({
  super.key,
  required this.configs,
  required this.callbacks,
  required this.editor,
});