2025-11-04 14:58:51 +07:00

10 lines
349 B
Dart

part of '../printer.dart';
abstract class IPrinterRepository {
Future<Either<PrinterFailure, bool>> connectBluetooth(String macAddress);
Future<Either<PrinterFailure, bool>> disconectBluetooth();
Future<Either<PrinterFailure, bool>> isBluetoothEnabled();
Future<Either<PrinterFailure, List<BluetoothInfo>>>
getPairedBluetoothDevices();
}