copyWith method

GetStoryViewers copyWith({
  1. int? storyId,
  2. MessageViewer? offsetViewer,
  3. int? limit,
})

Implementation

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