create static method

BarrageStore create(
  1. String liveID
)

Barrage management core class, used to handle barrage related business logic in live rooms/voice chat rooms.

@param liveID Live room ID @return BarrageStore Barrage management instance for the specified room

Implementation

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