setAppGroupIdentifier method
Implementation
setAppGroupIdentifier(String groupId ) async{
if(appGroupId==null) {
if (Platform.isIOS) {
appGroupId = groupId;
await WebRTC.invokeMethod(
"setAppGroupID", <String, dynamic>{'appGroupId': groupId});
}
}
}