uninitVideoSuperResolution method

Future<void> uninitVideoSuperResolution()

Uninit video super resolution.

Available since: 3.3.0 Description: After deinitializing the super resolution, the SDK will release the resources occupied by the super resolution and make the super resolution function unavailable. Use cases: Live streaming scenario. When to call: Needs to be called after initVideoSuperResolution. Caution: Initializing the video screen is divided into time-consuming operations, and frequent initialization and de-initialization are not recommended.

Implementation

Future<void> uninitVideoSuperResolution() async {
  return await ZegoExpressImpl.instance.uninitVideoSuperResolution();
}