getTip method
Implementation
ArrowTip getTip() {
var tips = getTips().submobjects;
if (tips.isEmpty) {
throw 'Tip not found';
} else {
return tips.first as ArrowTip;
}
}
ArrowTip getTip() {
var tips = getTips().submobjects;
if (tips.isEmpty) {
throw 'Tip not found';
} else {
return tips.first as ArrowTip;
}
}