disconnectBT static method

Future<bool> disconnectBT()

Implementation

static Future<bool> disconnectBT() async {
  final bool? check = await (_channel
      .invokeMethod<dynamic>(PrinterMethod.disconnectBT) as FutureOr<bool?>);
  return check ?? false;
}