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