setTcpOpenTimeOutMs method
Implementation
FutureOr<void> setTcpOpenTimeOutMs(int tcpOpenTimeOutMs) {
if (Platform.isAndroid) {
return ($instance as $p_a.BDVideoUploader).setTcpOpenTimeOutMilliSec(
tcpOpenTimeOutMs,
);
} else if (Platform.isIOS) {
return ($instance as $p_i.BDVideoUploaderClient).setUploadConfig({
"BDFileUploadTcpOpenTimeOutMilliSec": tcpOpenTimeOutMs,
});
}
}