startVideo method
Start sending local video data from the camera.
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> startVideo() async {
return await methodChannel
.invokeMethod<String>('startVideo')
.then<String>((String? value) => value ?? "");
}