create static method

BarrageStore create(
  1. String liveID
)

Barrage management core class for handling barrage related business logic in live rooms/voice chat rooms.

  • liveID : Live room ID Returns: Barrage management instance for the specified room

Implementation

static BarrageStore create(String liveID) {
  return StoreFactory.shared.getStore<BarrageStore>(liveID: liveID);
}