CustomizableList constructor

const CustomizableList({
  1. Key? key,
  2. required Future<List<String>> getCustomReactions(),
  3. required dynamic onReactionSelected(
    1. String
    )?,
  4. required dynamic onChangeReactionSelected(
    1. String
    )?,
  5. bool disableVariation = false,
  6. bool showVariationsOnHold = false,
  7. CustomizableListController? controller,
  8. EmojiStyle emojiStyle = const EmojiStyle(),
  9. Size? size,
  10. int limit = 5,
})

Implementation

const CustomizableList(
    {super.key,
    required this.getCustomReactions,
    required this.onReactionSelected,
    required this.onChangeReactionSelected,
    this.disableVariation = false,
    this.showVariationsOnHold = false,
    this.controller,
    this.emojiStyle = const EmojiStyle(),
    this.size,
    this.limit = 5});