listConnections method

Future<List<String>?> listConnections()

List all connections

List all connections being used

Implementation

Future<List<String>?> listConnections() async {
  return LogbotConnectionsManager().connections.keys.toList();
}