setAppGroupIdentifier method

dynamic setAppGroupIdentifier(
  1. String groupId
)

Implementation

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