copyWith method
Implementation
StoryInfo copyWith({
int? storyId,
int? date,
bool? isForCloseFriends,
bool? isLive,
}) => StoryInfo(
storyId: storyId ?? this.storyId,
date: date ?? this.date,
isForCloseFriends: isForCloseFriends ?? this.isForCloseFriends,
isLive: isLive ?? this.isLive,
);