isSized property
bool
get
isSized
Implementation
bool get isSized {
// print("isSized ${context.findRenderObject()}");
if ((context.findRenderObject() != null)) {
return (context.findRenderObject() as RenderBox).hasSize;
}
return false;
}