area property

  1. @override
Future<num?> get area
override

Get the polygon's area, this is the combined area of all the polygons in the MPMultiPolygon

Implementation

@override
Future<num?> get area async =>
    _area ??= await UtilPlatform.instance.geometryArea(this);