playSoundNotification method

Future<void> playSoundNotification({
  1. required String soundNotification,
})

UncompleteDocumentation

Implementation

Future<void> playSoundNotification({
  required String soundNotification,
}) async {
  try {
    await playerNotification()
        .open(GeneralSystemDeviceLibraryPlayerMediaBase(soundNotification));
  } catch (e) {}
}