isFeatureSupported static method

Future<bool> isFeatureSupported(
  1. ZegoFeatureType featureType
)

查询当前 SDK 是否支持指定的功能特性。

支持版本:2.22.0 及以上。 详情描述: 由于 SDK 支持特性裁包,部分特性可能已被裁剪; 可以使用此函数快速判断当前 SDK 是否支持指定的功能特性,例如,查询是否支持媒体播放器功能。 调用时机:任意时刻。

  • featureType 要查询的功能特性类型。
  • Returns 是否支持指定功能特性。true 表示支持;false 表示不支持。

Implementation

static Future<bool> isFeatureSupported(ZegoFeatureType featureType) async {
  return await ZegoExpressImpl.isFeatureSupported(featureType);
}