GetCustomerResponse constructor

GetCustomerResponse({
  1. Status? status,
  2. bool? success,
  3. String? errorCode,
  4. String? message,
  5. String? details,
  6. String? terminalKey,
  7. String? customerKey,
  8. String? email,
  9. String? phone,
})

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

Implementation

GetCustomerResponse({
  Status? status,
  bool? success,
  String? errorCode,
  String? message,
  String? details,
  this.terminalKey,
  this.customerKey,
  this.email,
  this.phone,
}) : super(
        status: status,
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );