explode method Null safety
override
Explodes the Point
into a list of Point
s
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];
}