stop method

Future<void> stop()

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

Refer Audio sharing in iOS guide here

Implementation

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