sequence property

int? sequence
inherited

Gets the revision sequence number of this component

Implementation

int? get sequence =>
    getProperty<IntegerProperty>(IntegerProperty.propertyNameSequence)
        ?.intValue;
void sequence=(int? value)
inherited

Sets the sequence

Implementation

set sequence(int? value) => setOrRemoveProperty(
    IntegerProperty.propertyNameSequence,
    IntegerProperty.create(IntegerProperty.propertyNameSequence, value));