make method

Container make()

Builds the Flutter Container widget.

Implementation

Container make() => Container(
  alignment: alignment,
  padding: padding,
  margin: margin,
  width: _width,
  height: _height,
  decoration: decoration,
  child: child,
);