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