copyWith method
Implementation
GetStoryViewers copyWith({
int? storyId,
MessageViewer? offsetViewer,
int? limit,
}) =>
GetStoryViewers(
storyId: storyId ?? this.storyId,
offsetViewer: offsetViewer ?? this.offsetViewer,
limit: limit ?? this.limit,
);