updateCommonParams method
Implementation
Future<void> updateCommonParams(Map<String, Object> params) async {
if (!hadCreated) {
ZegoLoggerService.logInfo(
'not init',
tag: 'uikit-reporter',
subTag: 'updateCommonParams',
);
return;
}
ZegoLoggerService.logInfo(
'$params',
tag: 'uikit-reporter',
subTag: 'updateCommonParams',
);
await ZegoUIKitPluginPlatform.instance.reporterUpdateCommonParams(params);
}