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