position property

Point get position

Gets or sets the x- and y-axis position of the Rect as a Point.

Implementation

_i3.Point get position => _i4.getProperty(
      this,
      'position',
    );
set position (Point value)

Implementation

set position(_i3.Point value) {
  _i4.setProperty(
    this,
    'position',
    value,
  );
}