copyWith method
Implementation
FoundStories copyWith({
int? totalCount,
List<Story>? stories,
String? nextOffset,
}) => FoundStories(
totalCount: totalCount ?? this.totalCount,
stories: stories ?? this.stories,
nextOffset: nextOffset ?? this.nextOffset,
);