copyWith method
PayConfirmationEntity
copyWith({
- String? documentID,
- String? appId,
- String? description,
- String? shopId,
- ActionEntity? backToShopAction,
- StorageConditionsEntity? conditions,
Implementation
PayConfirmationEntity copyWith({
String? documentID,
String? appId,
String? description,
String? shopId,
ActionEntity? backToShopAction,
StorageConditionsEntity? conditions,
}) {
return PayConfirmationEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
shopId: shopId ?? this.shopId,
backToShopAction: backToShopAction ?? this.backToShopAction,
conditions: conditions ?? this.conditions,
);
}