FrostedGlassTextBottomBar constructor

const FrostedGlassTextBottomBar({
  1. Key? key,
  2. required ProImageEditorConfigs configs,
  3. required Color initColor,
  4. required ValueChanged<Color> onColorChanged,
  5. required TextStyle selectedStyle,
  6. required dynamic onFontChange(
    1. TextStyle style
    ),
})

Implementation

const FrostedGlassTextBottomBar({
  super.key,
  required this.configs,
  required this.initColor,
  required this.onColorChanged,
  required this.selectedStyle,
  required this.onFontChange,
});