getAllConnections method

  1. @override
Future<Map<String, bool>> getAllConnections()
override

Implementation

@override
Future<Map<String, bool>> getAllConnections() async {
  final result =
      await _channel.invokeMethod(PrinterMethod.checkConnect.value);
  return Map<String, bool>.from(result);
}