MessageActionSheet constructor

const MessageActionSheet({
  1. Key? key,
  2. bool isMine = false,
  3. bool isPinned = false,
  4. bool isFile = false,
  5. VoidCallback? onReply,
  6. VoidCallback? onCopy,
  7. VoidCallback? onPin,
  8. VoidCallback? onEdit,
  9. VoidCallback? onDelete,
  10. dynamic onReact(
    1. String emoji
    )?,
})

Implementation

const MessageActionSheet({
  super.key,
  this.isMine = false,
  this.isPinned = false,
  this.isFile = false,
  this.onReply,
  this.onCopy,
  this.onPin,
  this.onEdit,
  this.onDelete,
  this.onReact,
});