setHoveringConnection method

void setHoveringConnection(
  1. bool hovering
)

Sets the connection hover state.

Parameters:

  • hovering - Whether the cursor is hovering over a connection

Implementation

void setHoveringConnection(bool hovering) {
  runInAction(() {
    hoveringConnection.value = hovering;
  });
}