Checks if there is an active connection to a Bluetooth peripheral.
@override Future<bool> get isConnected async { final connected = await methodChannel.invokeMethod<bool>('printerIsConnect') ?? false; return connected; }