defaultPortStyle function
Implementation
FlPortStyle defaultPortStyle(PortState state) {
return FlPortStyle(
shape: FlPortShape.circle,
color: state.isHovered ? Colors.red : Colors.blue,
radius: 4,
linkStyleBuilder: defaultLinkStyle,
);
}