CancelResponse constructor
CancelResponse({})
Создает экземпляр ответа от сервера на отмену платежа
Implementation
CancelResponse({
Status? status,
bool? success,
String? errorCode,
String? message,
String? details,
this.terminalKey,
this.orderId,
this.paymentId,
this.originalAmount,
this.newAmount,
}) : super(
status: status,
success: success,
errorCode: errorCode,
message: message,
details: details,
);