isSized property

bool isSized

Whether the RenderBox representing this RollState has size.

Implementation

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