x property

num x
override

Implementation

num get x => JS("num", "#.x", this);
void x= (num value)

Implementation

set x(num value) {
  JS("void", "#.x = #", this, value);
}