toBox method
Implementation
Widget toBox(BuildContext context, {bool softWarn = true}) {
if (isSliver(context)) {
warn(
"$runtimeType is a sliver in a box context, wrapping in a shrink-wrapped CustomScrollView");
return CustomScrollView(
shrinkWrap: true,
physics: NeverScrollableScrollPhysics(),
slivers: [this],
);
}
return this;
}