create static method

CoGuestStore create(
  1. String liveID
)

Create CoGuestStore instance

  • liveID : Live room ID Returns: CoGuestStore instance

Implementation

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