NormalizedPolygon constructor
NormalizedPolygon({
- Iterable<
NormalizedVertex> ? normalizedVertices,
Implementation
factory NormalizedPolygon({
$core.Iterable<NormalizedVertex>? normalizedVertices,
}) {
final $result = create();
if (normalizedVertices != null) {
$result.normalizedVertices.addAll(normalizedVertices);
}
return $result;
}