From cc736be4204abf72d68eb597ab4163134b7f81d0 Mon Sep 17 00:00:00 2001 From: Yogesh Singh Date: Thu, 18 Apr 2024 16:32:22 +0530 Subject: [PATCH] updated docs --- packages/hmssdk_flutter/lib/src/enum/hms_peer_type.dart | 1 + .../lib/src/model/hms_noise_cancellation_controller.dart | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/hmssdk_flutter/lib/src/enum/hms_peer_type.dart b/packages/hmssdk_flutter/lib/src/enum/hms_peer_type.dart index f38e68499..1a39807de 100644 --- a/packages/hmssdk_flutter/lib/src/enum/hms_peer_type.dart +++ b/packages/hmssdk_flutter/lib/src/enum/hms_peer_type.dart @@ -1,4 +1,5 @@ ///[HMSPeerType] contains peer types i.e peer joined using SIP or using the application +/// Read more info here: https://www.100ms.live/docs/flutter/v2/how-to-guides/extend-capabilities/sip enum HMSPeerType { sip, regular } extension HMSPeerTypevalues on HMSPeerType { diff --git a/packages/hmssdk_flutter/lib/src/model/hms_noise_cancellation_controller.dart b/packages/hmssdk_flutter/lib/src/model/hms_noise_cancellation_controller.dart index 259fe01c0..a2a38f082 100644 --- a/packages/hmssdk_flutter/lib/src/model/hms_noise_cancellation_controller.dart +++ b/packages/hmssdk_flutter/lib/src/model/hms_noise_cancellation_controller.dart @@ -2,6 +2,7 @@ import 'package:hmssdk_flutter/hmssdk_flutter.dart'; import 'package:hmssdk_flutter/src/service/platform_service.dart'; ///[HMSNoiseCancellationController] class exposes methods to control noise cancellation for the user +/// Checkout the Noise Cancellations Docs here: https://www.100ms.live/docs/flutter/v2/how-to-guides/extend-capabilities/noise-cancellation abstract class HMSNoiseCancellationController { ///[enable] enables noise cancellation static Future enable() async {