x property

int get x

The x-coordinate of the point.

Implementation

int get x => _wrapped.x;
set x (int v)

Implementation

set x(int v) {
  _wrapped.x = v;
}