stopShareWhiteboard method
Stop sharing the whiteboard.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> stopShareWhiteboard() async {
return await methodChannel
.invokeMethod<String>('stopShareWhiteboard')
.then<String>((String? value) => value ?? "");
}