contours property
Implementation
List<List<GeoPoint>> get contours {
_CArray_CArray_CGeoPoint res = _CPolygon_contours(_CPolygonMakeDefault().._impl=_self);
final t = res._toDart();
res._releaseIntermediate();
return t;
}
Implementation
set contours(List<List<GeoPoint>> contours) {
var _a1 = contours._copyFromDartTo_CArray_CArray_CGeoPoint();
void res = _CPolygon_setContours_CArray_CArray_CGeoPoint(_CPolygonMakeDefault().._impl=_self, _a1);
_a1._releaseIntermediate();
return res;
}