라이브 로그 전달 받기
- 印刷する
라이브 로그 전달 받기
- 印刷する
The content is currently unavailable in Ja - 日本語. You are viewing the default Korean version.
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
Stream<ShopLivePlayerLog> log를 통해 라이브 로그를 전달 받습니다.
ShopLivePlayerLog
Property name | Type | Description |
|---|---|---|
name | String | Event 의 이름 |
feature | String | Event 의 종류 |
campaignKey | String? | 방송의 Unique Key |
parameter | Map<String, dynamic>? | 관련 추가 parameter |
late final _shopLivePlayerPlugin = ShopLivePlayer();
_shopLivePlayerPlugin.log.listen((data) {
_showToast(
"clickLog : ${data.name}, ${data.feature}, ${data.campaignKey}, ${const JsonEncoder().convert(data.payload)}");
});