getConnectRetryInterval method

Future<double> getConnectRetryInterval()

获取重连时长

returns 重连时长 默认: 1000

Implementation

Future<double> getConnectRetryInterval() async {
  String strV = await _livePusherConfigMC.invokeMethod(
    'getConnectRetryInterval',
    wrapArgs(),
  );
  double doubleV = double.parse(strV);
  return doubleV;
}