GroundedTuneBar constructor
const
GroundedTuneBar({
- Key? key,
- required ProImageEditorConfigs configs,
- required ProImageEditorCallbacks callbacks,
- required TuneEditorState editor,
Creates a GroundedTuneBar
with the given configurations and callbacks.
The configs
parameter provides the configuration settings for the
editor.
The callbacks
parameter provides the callback functions for handling
user interactions.
The editor
parameter refers to the TuneEditorState
that manages the
image editing state.
Implementation
const GroundedTuneBar({
super.key,
required this.configs,
required this.callbacks,
required this.editor,
});