getLinkIcon method
Implementation
IconData getLinkIcon() {
switch (arrowDirection) {
case "left":
return Icons.chevron_left;
case "up":
return Icons.expand_less;
case "down":
return Icons.expand_more;
default:
return Icons.chevron_right;
}
}