copyWith method
Implementation
ProfileEntity copyWith({
String? documentID,
String? appId,
String? description,
String? feedId,
BackgroundEntity? backgroundOverride,
StorageConditionsEntity? conditions,
}) {
return ProfileEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
feedId: feedId ?? this.feedId,
backgroundOverride: backgroundOverride ?? this.backgroundOverride,
conditions: conditions ?? this.conditions,
);
}