log property

Stream<ShopLivePlayerLog> log
latefinal

Implementation

late final Stream<ShopLivePlayerLog> log =
    const EventChannel(_EVENT_PLAYER_LOG)
        .receiveBroadcastStream()
        .map((jsonString) => const JsonDecoder().convert(jsonString))
        .map((json) => ShopLivePlayerLog.fromJson(json));