InvalidPolygonException constructor

const InvalidPolygonException(
  1. String message, {
  2. int? vertexCount,
  3. String? code,
})

Implementation

const InvalidPolygonException(
  super.message, {
  this.vertexCount,
  super.code,
});