rebootDevice method

Future<bool> rebootDevice()

Implementation

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