setTcpOpenTimeOutMs method

FutureOr<void> setTcpOpenTimeOutMs(
  1. int tcpOpenTimeOutMs
)

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,
    });
  }
}