ULinkInstallationInfo.freshInstall constructor
Creates a fresh installation info (not a reinstall)
Implementation
factory ULinkInstallationInfo.freshInstall({
required String installationId,
String? persistentDeviceId,
}) {
return ULinkInstallationInfo(
installationId: installationId,
isReinstall: false,
persistentDeviceId: persistentDeviceId,
);
}