copyWith method
Implementation
PaywayCreateTransactionResponse copyWith({
int? status,
String? description,
String? qrString,
String? qrImage,
String? abapayDeeplink,
String? appStore,
String? playStore,
}) {
return PaywayCreateTransactionResponse(
status: status ?? this.status,
description: description ?? this.description,
qrString: qrString ?? this.qrString,
qrImage: qrImage ?? this.qrImage,
abapayDeeplink: abapayDeeplink ?? this.abapayDeeplink,
appStore: appStore ?? this.appStore,
playStore: playStore ?? this.playStore,
);
}