RemoveCustomerResponse constructor

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

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

Implementation

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