create static method

CoHostStore create(
  1. String liveID
)

Create CoHostStore instance

  • liveID : Live room ID Returns: CoHostStore instance

Implementation

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