sequence property

int sequence

Implementation

int get sequence => _getAttribute<int>(kSequence, 0);
void sequence=(int? x)

pass null to remove key from attributes

Implementation

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