create method Null safety
根据鉴权创建 Zego Effects SDK,鉴权由内部处理,用户只需传 appID 和 appSign 即可。
int appID 申请的 appID String appSign 申请的 appSign
返回创建状态。状态为 0 时表示成功,其他则失败。
Implementation
Future<int> create(int appID, String appSign) async {
return await _channel.invokeMethod('create', {'appID': appID, 'appSign': appSign});
}