IconsEmojiEditor constructor

const IconsEmojiEditor({
  1. IconData bottomNavBar = Icons.sentiment_satisfied_alt_rounded,
})

Creates an instance of IconsEmojiEditor with customizable icon settings.

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

Example:

IconsEmojiEditor(
  bottomNavBar: Icons.sentiment_satisfied_alt_rounded,
)

Implementation

const IconsEmojiEditor({
  this.bottomNavBar = Icons.sentiment_satisfied_alt_rounded,
});