IconsBlurEditor constructor

const IconsBlurEditor({
  1. IconData bottomNavBar = Icons.blur_on,
})

Creates an instance of IconsBlurEditor with customizable icon settings.

You can provide a custom icon for the bottom navigation bar in the Blur Editor component.

If no custom icon is provided, a default blur icon is used.

Example:

IconsBlurEditor(
  bottomNavBar: Icons.blur_on,
)

Implementation

const IconsBlurEditor({
  this.bottomNavBar = Icons.blur_on,
});