order property

int order

Implementation

int get order => _getAttribute<int>(kOrder, 0);
void order=(int? x)

pass null to remove key from attributes

Implementation

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