AddCustomerResponse constructor

AddCustomerResponse({
  1. bool? success,
  2. String? errorCode,
  3. String? message,
  4. String? details,
  5. String? terminalKey,
  6. String? customerKey,
})

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

Implementation

AddCustomerResponse({
  bool? success,
  String? errorCode,
  String? message,
  String? details,
  this.terminalKey,
  this.customerKey,
}) : super(
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );