AddCardResponse constructor
AddCardResponse({})
Создает экземпляр ответа от сервера на привязку карты к покупателю
Implementation
AddCardResponse({
bool? success,
String? errorCode,
String? message,
String? details,
this.terminalKey,
this.customerKey,
this.requestKey,
this.paymentURL,
}) : super(
success: success,
errorCode: errorCode,
message: message,
details: details,
);