getInstallId method

String? getInstallId()

Returns the unique installId assigned to this device by the backend.

Returns null if the SDK is not initialized or no ID has been assigned.

Implementation

String? getInstallId() {
  if (!_isInitialized) return null;
  return _attributionManager?.getInstallId();
}