playNotification method
Play default notification sound
Implementation
@override
Future<void> playNotification({
double? volume,
bool? looping,
bool asAlarm = false,
}) {
return play(
android: AndroidSounds.notification,
ios: IosSounds.triTone,
volume: volume,
looping: looping,
asAlarm: asAlarm,
);
}