getPushURL method

Future<String> getPushURL()

获取当前推流URL

returns 当前推流URL

Implementation

Future<String> getPushURL() async {
  return await _livePusherMethodChannel.invokeMethod(
    'getPushURL',
    wrapArgs(),
  );
}