create method
Creates and returns a ArrowDrawable with length of 0 and the passed position
and paint
.
Implementation
@override
ArrowDrawable create(Offset position, [Paint? paint]) {
return ArrowDrawable(
length: 0,
position: position,
paint: paint,
arrowHeadSize: arrowHeadSize);
}