isSized property

bool get isSized

Whether this Roll widget has determined its size.

Used to ensure size-dependent operations are only performed after layout.

Implementation

bool get isSized =>
    (context.findRenderObject() == null)
        ? false
        : (context.findRenderObject() as RenderBox).hasSize;