beep method

Future<bool> beep({
  1. int times = 1,
  2. int duration = 100,
})

Emite beep na impressora

Implementation

Future<bool> beep({int times = 1, int duration = 100}) {
  throw UnimplementedError('beep() has not been implemented.');
}