x property

T get x

The x-coordinate of the left edge of the rectangle. Alias for left.

Implementation

T get x => left;
set x (dynamic x)

Sets the x-coordinate of the left edge of the rectangle. Alias for setting left.

Implementation

set x(x) => left = x;