create static method

ZIM? create(
  1. ZIMAppConfig config
)

Create a ZIM instance.

You need to create and initialize an ZIM instance before calling any other function. The SDK supports the creation of multiple ZIM instances.

config appID and appSign issued by ZEGO for developers, Please apply at the ZEGO console.

Implementation

static ZIM? create(ZIMAppConfig config) {
  return ZIMManager.createEngine(config);
}