我在 Flutter 应用程序中定义主机 URL
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="example.io" />
</intent-filter>
example.io
是我的基本 URL 当我单击任何具有此基础的 URL 时它会打开我的应用程序我如何获得
https://example.io/uniqueid
https://example.io/
当我点击以上任一 URL 时,它会打开我的应用程序。每次使用我的 URL 启动应用程序时,如何获取 uniqueId?