part of '../printer.dart'; abstract class IPrinterRepository { Future> connectBluetooth(String macAddress); Future> disconectBluetooth(); Future> isBluetoothEnabled(); Future>> getPairedBluetoothDevices(); }