getBox method
Implementation
Widget getBox(void Function(RenderBox box) fn) {
final key = GlobalKey();
return Builder(
builder: (context) {
_getBox(fn, key);
return Container(
key: key,
child: this,
);
},
);
}