RenderOffstage constructor Null safety
Creates an offstage render object.
Implementation
RenderOffstage({
bool offstage = true,
RenderBox? child,
}) : assert(offstage != null),
_offstage = offstage,
super(child);
Creates an offstage render object.
RenderOffstage({
bool offstage = true,
RenderBox? child,
}) : assert(offstage != null),
_offstage = offstage,
super(child);