strokeColor property

Color get strokeColor

Implementation

Color get strokeColor {
  _CColor res = _CPolygon_strokeColor(_CPolygonMakeDefault().._impl=_self);
  return res._toDart();
}
set strokeColor (Color color)

Implementation

set strokeColor(Color color) {
  var _a1 = color._copyFromDartTo_CColor();
  void res = _CPolygon_setStrokeColor_CColor(_CPolygonMakeDefault().._impl=_self, _a1);
  return res;
}