beep static method

Future<void> beep([
  1. bool success = true
])

play basic beep sound

Implementation

static Future<void> beep([bool success = true]) {
  return playBeep(success: success);
}