playNotification method
Play default notification sound
Implementation
Future<void> playNotification({
double? volume,
bool? looping,
bool asAlarm = false,
}) {
return FlutterRingtonePlayerPlatform.instance
.playNotification(volume: volume, looping: looping, asAlarm: asAlarm);
}