Skip to content

Commit

Permalink
Updated docs link
Browse files Browse the repository at this point in the history
  • Loading branch information
Decoder07 committed May 15, 2024
1 parent 8ac9948 commit ef4f817
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/hmssdk_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

- Introducing Whiteboard support in HMSSDK

HMSSDK now provides support for Whiteboard. You can now start/stop a whiteboard using `HMSWhiteboardController` methods. HMSSDK provides also provides callbacks for whiteboard start/stop events. Learn more about it [here](https://www.100ms.live/docs/flutter/v2/how-to-guides/set-up-video-conferencing/whiteboard)
HMSSDK now provides support for Whiteboard. You can now start/stop a whiteboard using `HMSWhiteboardController` methods. HMSSDK provides also provides callbacks for whiteboard start/stop events. Learn more about it [here](https://www.100ms.live/docs/flutter/v2/how-to-guides/extend-capabilities/whiteboard)

- HLS Layer methods

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class HMSWhiteboardController {
///
/// **title** - title of the whiteboard
///
/// Refer [Start Whiteboard](https://www.100ms.live/docs/flutter/v2/how-to-guides/set-up-video-conferencing/whiteboard#start-whiteboard)
/// Refer [Start Whiteboard](https://www.100ms.live/docs/flutter/v2/how-to-guides/extend-capabilities/whiteboard#start-whiteboard)
static Future<HMSException?> start({required String title}) async {
var result = await PlatformService.invokeMethod(
PlatformMethod.startWhiteboard,
Expand All @@ -24,7 +24,7 @@ class HMSWhiteboardController {

/// Stops the Whiteboard.
///
/// Refer [Stop Whiteboard](https://www.100ms.live/docs/flutter/v2/how-to-guides/set-up-video-conferencing/whiteboard#stop-whiteboard)
/// Refer [Stop Whiteboard](https://www.100ms.live/docs/flutter/v2/how-to-guides/extend-capabilities/whiteboard#stop-whiteboard)
static Future<HMSException?> stop() async {
var result =
await PlatformService.invokeMethod(PlatformMethod.stopWhiteboard);
Expand All @@ -42,15 +42,15 @@ class HMSWhiteboardController {
///
/// **listener** - whiteboard update listener to be attached
///
/// Refer [Whiteboard Update Listener](https://www.100ms.live/docs/flutter/v2/how-to-guides/set-up-video-conferencing/whiteboard#how-to-display-whiteboard)
/// Refer [Whiteboard Update Listener](https://www.100ms.live/docs/flutter/v2/how-to-guides/extend-capabilities/whiteboard#how-to-display-whiteboard)
static void addHMSWhiteboardUpdateListener(
{required HMSWhiteboardUpdateListener listener}) {
PlatformService.addWhiteboardUpdateListener(listener);
}

/// Removes an [HMSWhiteboardUpdateListener] that was previously added.
///
/// Refer [Whiteboard Update Listener](https://www.100ms.live/docs/flutter/v2/how-to-guides/set-up-video-conferencing/whiteboard#how-to-display-whiteboard)
/// Refer [Whiteboard Update Listener](https://www.100ms.live/docs/flutter/v2/how-to-guides/extend-capabilities/whiteboard#how-to-display-whiteboard)
static void removeHMSWhiteboardUpdateListener() {
PlatformService.removeWhiteboardUpdateListener();
}
Expand Down

0 comments on commit ef4f817

Please sign in to comment.