copyWith method
Implementation
AssignmentViewEntity copyWith({
String? documentID,
String? appId,
String? title,
String? description,
StorageConditionsEntity? conditions,
}) {
return AssignmentViewEntity(
appId: appId ?? this.appId,
title: title ?? this.title,
description: description ?? this.description,
conditions: conditions ?? this.conditions,
);
}