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