GroundedBlurBar constructor

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

Constructor for the GroundedBlurBar.

Requires the configs, callbacks, and editor parameters.

Implementation

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