box method

Widget box({
  1. Widget? child,
})

Implementation

Widget box({Widget? child}) {
  return Box(this, child: child);
}