box method

Box box({
  1. required Widget child,
  2. bool inherit = false,
  3. Key? key,
  4. Style? style,
})

Implementation

Box box({
  required Widget child,
  bool inherit = false,
  Key? key,
  Style? style,
}) {
  return container(inherit: inherit, key: key, style: style, child: child);
}