copyWith method
Implementation
FollowingDashboardEntity copyWith({
String? documentID,
String? appId,
String? description,
int? view,
List<MemberActionEntity>? memberActions,
StorageConditionsEntity? conditions,
}) {
return FollowingDashboardEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
view: view ?? this.view,
memberActions: memberActions ?? this.memberActions,
conditions: conditions ?? this.conditions,
);
}