unSubscribeWhiteboard method

  1. @override
Future<String> unSubscribeWhiteboard()

Unsubscribe from the whiteboard.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

@override
Future<String> unSubscribeWhiteboard() async {
  return await methodChannel
      .invokeMethod<String>('unSubscribeWhiteboard')
      .then<String>((String? value) => value ?? "");
}