area property
Get path rectangle.
The geographic bounding rectangle that contains this path.
Returns
- A RectangleGeographicArea describing the geographic area covered by the path.
Implementation
RectangleGeographicArea get area {
final OperationResult resultString = objectMethod(
pointerId,
'Path',
'getArea',
);
return RectangleGeographicArea.fromJson(resultString['result']);
}