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