isPositioned property

bool get isPositioned

Whether this child participates in absolute positioning.

Implementation

bool get isPositioned =>
    left != null ||
    top != null ||
    right != null ||
    bottom != null ||
    width != null ||
    height != null;