beep static method

Future<int> beep({
  1. dynamic beep,
})

3.23 蜂鸣器

Implementation

static Future<int> beep({beep}) async {
  final int p = await _channel.invokeMethod('Beep', {'beep': beep});
  return p;
}