copyWithWrapped method

Implementation

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