isFirstLaunch method
Returns whether this app session is considered a first launch.
First launch refers to the very first time the app is opened after installation, before any attribution reporting has completed.
Implementation
bool isFirstLaunch() {
if (!_isInitialized) return true;
return _attributionManager?.isFirstLaunch() ?? true;
}