removePoint method

bool removePoint(
  1. LightColorXy point
)

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);