explode method Null safety

List<Point> explode()

Explodes the Feature into a list of Points. (Not actually possible, as a base feature has no geometry)

Implementation

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