copyWith method
Implementation
ShopEntity copyWith({
String? documentID,
String? appId,
String? description,
String? shortDescription,
String? currency,
StorageConditionsEntity? conditions,
}) {
return ShopEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
shortDescription: shortDescription ?? this.shortDescription,
currency: currency ?? this.currency,
conditions: conditions ?? this.conditions,
);
}