explode method

  1. @override
List<Point> explode()
override

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

Implementation

@override
List<Point> explode() {
  return [this];
}