length property
num
get
length
Gets or sets the length of the array. This is a number one higher than the highest index in the array.
Implementation
_i2.num get length => _i6.getProperty(
this,
'length',
);
set
length
(num value)
Implementation
set length(_i2.num value) {
_i6.setProperty(
this,
'length',
value,
);
}