Submit3DSAuthorizationResponse constructor

Submit3DSAuthorizationResponse({
  1. Status? status,
  2. bool? success,
  3. String? errorCode,
  4. String? message,
  5. String? details,
  6. String? terminalKey,
  7. int? amount,
  8. String? orderId,
  9. String? paymentId,
  10. int? rebillId,
  11. String? cardId,
})

Создает экземпляр ответа от сервера на прохождение 3-D Secure

Implementation

Submit3DSAuthorizationResponse({
  Status? status,
  bool? success,
  String? errorCode,
  String? message,
  String? details,
  this.terminalKey,
  this.amount,
  this.orderId,
  this.paymentId,
  this.rebillId,
  this.cardId,
}) : super(
        status: status,
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );