copyWith method
FeedFrontEntity
copyWith(
{ - String? documentID,
- String? appId,
- String? description,
- String? feedId,
- BackgroundEntity? backgroundOverridePosts,
- BackgroundEntity? backgroundOverrideProfile,
- StorageConditionsEntity? conditions,
})
Implementation
FeedFrontEntity copyWith({
String? documentID,
String? appId,
String? description,
String? feedId,
BackgroundEntity? backgroundOverridePosts,
BackgroundEntity? backgroundOverrideProfile,
StorageConditionsEntity? conditions,
}) {
return FeedFrontEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
feedId: feedId ?? this.feedId,
backgroundOverridePosts:
backgroundOverridePosts ?? this.backgroundOverridePosts,
backgroundOverrideProfile:
backgroundOverrideProfile ?? this.backgroundOverrideProfile,
conditions: conditions ?? this.conditions,
);
}