height method

VContainer height(
  1. double h
)

Sets the height of the container.

Implementation

VContainer height(double h) => VContainer(
  child: child,
  alignment: alignment,
  padding: padding,
  margin: margin,
  width: _width,
  height: h,
  decoration: decoration,
);