stopPerformanceMonitor method
Stop system performance monitoring.
Available since: 1.19.0 Description: Stop system performance monitoring. After the monitoring is stopped, the onPerformanceStatusUpdate callback will not triggered. Use cases: Monitor system performance can help user quickly locate and solve performance problems and improve user experience. When to call: It needs to be called after createEngine. Restrictions: None. Related APIs: Call startPerformanceMonitor to start system performance monitoring.
Implementation
Future<void> stopPerformanceMonitor() async {
return await ZegoExpressImpl.instance.stopPerformanceMonitor();
}