beep method

Future<bool> beep()

Implementation

Future<bool> beep() async {
  try {
    channel.invokeMethod(PaymentTypeCall.BEEP.method);
    return true;
  } catch (e) {
    return false;
  }
}