IconsStickerEditor constructor

const IconsStickerEditor({
  1. IconData bottomNavBar = ProImageEditorIcons.stickers,
})

Creates an instance of IconsStickerEditor with customizable icon settings.

You can provide a custom bottomNavBar icon to be displayed in the bottom navigation bar of the Sticker Editor component. If no custom icon is provided, the default icon is used.

Example:

IconsStickerEditor(
  bottomNavBar: Icons.layers_outlined,
)

Implementation

const IconsStickerEditor({
  this.bottomNavBar = ProImageEditorIcons.stickers,
});