SbpPayTestResponse constructor

SbpPayTestResponse({
  1. Status? status,
  2. bool? success,
  3. String? errorCode,
  4. String? message,
  5. String? details,
})

Создает экземпляр ответа от сервера на тестированию платежной сессии с предопределенным статусом по СБП.

Implementation

SbpPayTestResponse({
  Status? status,
  bool? success,
  String? errorCode,
  String? message,
  String? details,
}) : super(
        status: status,
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );