setExtensionConfig method
@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);
}