pause method

Future<void> pause()

The pause function on HMSAudioFilePlayerNode to pause a file on a local device in a meeting room.

Refer Audio sharing in iOS guide here

Implementation

Future<void> pause() async {
  await PlatformService.invokeMethod(PlatformMethod.pauseAudioShare,
      arguments: {"name": methodName});
}