ReactionWrapper constructor

const ReactionWrapper({
  1. Key? key,
  2. required Widget child,
  3. required Widget buttonReaction,
  4. ReactionBoxParamenters? boxParamenters,
  5. dynamic handlePressed(
    1. Emotions?
    )?,
  6. dynamic handlePressedReactions()?,
  7. Emotions? initialEmotion,
})

Implementation

const ReactionWrapper({
  super.key,
  required this.child,
  required this.buttonReaction,
  this.boxParamenters,
  this.handlePressed,
  this.handlePressedReactions,
  this.initialEmotion,
});