GetQrResponse constructor

GetQrResponse({
  1. Status? status,
  2. bool? success,
  3. String? errorCode,
  4. String? message,
  5. String? details,
  6. String? terminalKey,
  7. int? paymentId,
  8. String? orderId,
  9. String? data,
})

Создает экземпляр ответа от сервера на регистрацию QR

Implementation

GetQrResponse({
  Status? status,
  bool? success,
  String? errorCode,
  String? message,
  String? details,
  this.terminalKey,
  this.paymentId,
  this.orderId,
  this.data,
}) : super(
        status: status,
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );