create static method

CoHostStore create(
  1. String liveID
)

Create CoHostStore instance

@param liveID Live room ID. @return CoHostStore instance.

Implementation

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