asPolygon method

Polygon? asPolygon()

Implementation

Polygon? asPolygon() {
  if (_value is Polygon) {
    return _value;
  }
  return null;
}