playAlarm method

Future<void> playAlarm({
  1. double? volume,
  2. bool looping = true,
  3. bool asAlarm = true,
})

Play default alarm sound (looping on Android)

Implementation

Future<void> playAlarm({
  double? volume,
  bool looping = true,
  bool asAlarm = true,
}) {
  throw UnimplementedError('playAlarm() has not been implemented.');
}