canStartLiveStream method
Determine whether the user can start a live stream.
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> canStartLiveStream() async {
return await methodChannel
.invokeMethod<String>('canStartLiveStream')
.then<String>((String? value) => value ?? "");
}