length property

num length

This read-only property is the length of the List, a synonym for the #count property.

Implementation

_i2.num get length => _i4.getProperty(
      this,
      'length',
    );
void length=(num value)

Implementation

set length(_i2.num value) {
  _i4.setProperty(
    this,
    'length',
    value,
  );
}