InteractionReceipt constructor

InteractionReceipt({
  1. required int messageId,
  2. required User sender,
  3. required String receiverType,
  4. required String receiverId,
  5. required List<Interaction> interactions,
})

Constructs a new InteractionReceipt instance.

Requires messageId, sender, receiverType, receiverId, and interactions to be specified.

Implementation

InteractionReceipt(
    {required this.messageId,
    required this.sender,
    required this.receiverType,
    required this.receiverId,
    required this.interactions});