length property

int get length

Implementation

int get length => js_util.getProperty(this, 'length');
set length (int newValue)

Implementation

set length(int newValue) {
  js_util.setProperty(this, 'length', newValue);
}