getBoundaryFromGeometry static method

Geometry? getBoundaryFromGeometry(
  1. Geometry g
)

Implementation

static Geometry? getBoundaryFromGeometry(Geometry g) {
  BoundaryOp bop = BoundaryOp(g);
  return bop.getBoundary();
}