createPolygonAnnotationManager method

Future<PolygonAnnotationManager> createPolygonAnnotationManager({
  1. String? id,
  2. String? below,
})

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);
}