x property

dynamic x

Implementation

dynamic get x => js_util.getProperty(this, 'x');
void x=(dynamic newValue)

Implementation

set x(dynamic newValue) {
  js_util.setProperty(this, 'x', newValue);
}