getConnections static method

List<Connection> getConnections()

Implementation

static List<Connection> getConnections() => _guard(() {
  _logAction('getConnections');
  final result = window.wagmiCore.getConnections();
  return result.toDart
      .map((jsConnection) => jsConnection.toDart)
      .toList();
});