copyWith method
PayConfirmationModel
copyWith({
- String? documentID,
- String? appId,
- String? description,
- ShopModel? shop,
- ActionModel? backToShopAction,
- StorageConditionsModel? conditions,
override
Implementation
@override
PayConfirmationModel copyWith({
String? documentID,
String? appId,
String? description,
ShopModel? shop,
ActionModel? backToShopAction,
StorageConditionsModel? conditions,
}) {
return PayConfirmationModel(
documentID: documentID ?? this.documentID,
appId: appId ?? this.appId,
description: description ?? this.description,
shop: shop ?? this.shop,
backToShopAction: backToShopAction ?? this.backToShopAction,
conditions: conditions ?? this.conditions,
);
}