resume method

Future<HMSException?> resume()

Implementation

Future<HMSException?> resume() async {
  var result = await PlatformService.invokeMethod(
      PlatformMethod.resumeAudioShare,
      arguments: {"name": methodName});
  if (result["success"]) {
    return null;
  } else {
    return HMSException.fromMap(result["data"]["error"]);
  }
}