copyWith method

FeedFrontEntity copyWith({
  1. String? documentID,
  2. String? appId,
  3. String? description,
  4. String? feedId,
  5. BackgroundEntity? backgroundOverridePosts,
  6. BackgroundEntity? backgroundOverrideProfile,
  7. 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,
  );
}