align method

VContainer align(
  1. Alignment a
)

Sets the alignment of the container.

Implementation

VContainer align(Alignment a) => VContainer(
  child: child,
  alignment: a,
  padding: padding,
  margin: margin,
  width: _width,
  height: _height,
  decoration: decoration,
);