removePoint method
Removes a point
from the points array.
Returns true
if point
was in the list, false
otherwise.
Implementation
bool removePoint(LightColorXy point) => _points.remove(point);
Removes a point
from the points array.
Returns true
if point
was in the list, false
otherwise.
bool removePoint(LightColorXy point) => _points.remove(point);