getConnectRetryCount method
获取重连次数
returns 重连次数 默认: 5
Implementation
Future<int> getConnectRetryCount() async {
String strV = await AlivcLivePusherConfig.methodChannel
.invokeMethod('getConnectRetryCount', _wrap());
int intV = int.parse(strV);
return intV;
}