isDot property
bool
get
isDot
Indicates if this line segment represents a 'dot' (i.e., start and end points are the same, and velocity is zero).
Implementation
bool get isDot => _velocity == 0.0;
Indicates if this line segment represents a 'dot' (i.e., start and end points are the same, and velocity is zero).
bool get isDot => _velocity == 0.0;