ReactionsWrapper constructor

const ReactionsWrapper({
  1. required Key? key,
  2. double? reactionWidth,
  3. Color overlayBackgroundColor = Colors.black12,
  4. bool showCloseButton = true,
  5. Widget? customCloseButton,
  6. Offset? offset,
  7. Alignment? alignment,
  8. required List<Reaction> reactions,
  9. required Widget child,
})

Implementation

const ReactionsWrapper({
  required super.key,
  this.reactionWidth,
  this.overlayBackgroundColor = Colors.black12,
  this.showCloseButton = true,
  this.customCloseButton,
  this.offset,
  this.alignment,
  required this.reactions,
  required this.child,
});