build method

Widget build(
  1. Widget child
)

Implementation

Widget build(Widget child) {
  Widget view = Container(
    width: _width,
    height: _height,
    margin: _margin,
    child: child,
  );
  if (_expanded) view = Expanded(flex: _flex, child: view);

  return view;
}