GetStateResponse constructor

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

Создает экземпляр ответа от сервера на получение статуса платежа

Implementation

GetStateResponse({
  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,
      );