playBeepAudio static method

void playBeepAudio()

播放提示音

Implementation

static void playBeepAudio() {
  Log.i(tag, "playBeepAudio");
  if (!settingChangeNotifier.enableBeep) {
    return;
  }

  PlatformMethodInvokeHandler.invokeMethod('PlayBeepAudio', ["beep", "mp3"]);
}