copyWith method

Implementation

ProjectSnapshotsResponseModel copyWith(
    {List<ProjectSnapshotResponseModel>? snapshots}) {
  return ProjectSnapshotsResponseModel(
      snapshots: snapshots ?? this.snapshots);
}