copyWith method

StoryInteraction copyWith({
  1. MessageSender? actorId,
  2. int? interactionDate,
  3. BlockList? blockList,
  4. StoryInteractionType? type,
})

Implementation

StoryInteraction copyWith({
  MessageSender? actorId,
  int? interactionDate,
  BlockList? blockList,
  StoryInteractionType? type,
}) => StoryInteraction(
  actorId: actorId ?? this.actorId,
  interactionDate: interactionDate ?? this.interactionDate,
  blockList: blockList ?? this.blockList,
  type: type ?? this.type,
);