length property

int length

Implementation

int get length => _getAttribute<int>(kLength, 0);
void length=(int? x)

pass null to remove key from attributes

Implementation

set length(int? x) =>
    (x == null) ? _attributes.remove(kLength) : _attributes[kLength] = x;