copyWithWrapped method

Implementation

ChapterSnapshotsResponseModel copyWithWrapped(
    {Wrapped<List<ChapterSnapshotResponseModel>>? snapshots}) {
  return ChapterSnapshotsResponseModel(
      snapshots: (snapshots != null ? snapshots.value : this.snapshots));
}