stopPlay static method

Future<int> stopPlay(
  1. V2TXLivePlayer livePlayer
)

Implementation

static Future<int> stopPlay(V2TXLivePlayer livePlayer) async {
  TCICLog.info("stopPlay", actionModule: ActionModule.liveSDK.name,actionName: ActionName.stopPlay.name);
  final code = await livePlayer.stopPlay();
  TCICLog.info("stopPlay code: $code", actionModule: ActionModule.liveSDK.name,actionName: ActionName.stopPlay.name);
  return code;
}