Explodes the Point into a list of Points Pretty useless, but needs to overwrite the Feature method.
Example:
Point(Coordinate(1, 2)).explode(); // [Point(1, 2)]
@override List<Point> explode() { return [this]; }