GroundedTextBar constructor

const GroundedTextBar({
  1. Key? key,
  2. required ProImageEditorConfigs configs,
  3. required ProImageEditorCallbacks callbacks,
  4. required TextEditorState editor,
  5. required String i18nColor,
  6. required dynamic showColorPicker(
    1. Color currentColor
    ),
})

Constructor for the GroundedTextBar.

Requires configs, callbacks, editor, i18nColor, and showColorPicker parameters.

Implementation

const GroundedTextBar({
  super.key,
  required this.configs,
  required this.callbacks,
  required this.editor,
  required this.i18nColor,
  required this.showColorPicker,
});