setExtensionConfig method

Future<int?> setExtensionConfig({
  1. required String groupId,
  2. required String bundleId,
})

@note Only available on iOS, call when using screen sharing. You can also set it through the iOS ByteRTCHelper setExtensionConfig:bundleId: method.

Implementation

Future<int?> setExtensionConfig({
  required String groupId,
  required String bundleId,
}) {
  return byteRTCHelper.setExtensionConfig(
      groupId: groupId, bundleId: bundleId);
}