center property
Point
get
center
Gets or sets the Point at the center of this Rect. Setting this property just shifts the X and Y values.
Implementation
_i3.Point get center => _i4.getProperty(
this,
'center',
);
set
center
(Point value)
Implementation
set center(_i3.Point value) {
_i4.setProperty(
this,
'center',
value,
);
}