createPolygonAnnotationManager method
Creates a PolygonAnnotationManager for polygon (fill) annotations.
Implementation
Future<PolygonAnnotationManager> createPolygonAnnotationManager({
String? id,
String? below,
}) async {
final impl = await _impl.createPolygonAnnotationManager(
id: id,
below: below,
);
return PolygonAnnotationManager(impl);
}