copyWith method
StoryInteraction
copyWith({
- MessageSender? actorId,
- int? interactionDate,
- BlockList? blockList,
- 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,
);