create static method

GiftStore create(
  1. String liveID
)

Create gift management instance.

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

Implementation

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