length property

dynamic length

Implementation

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

Implementation

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