VContainer constructor
const
VContainer({
- Widget? child,
- Alignment? alignment,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- double? width,
- double? height,
- BoxDecoration? decoration,
Creates a VContainer with optional parameters.
Implementation
const VContainer({
this.child,
this.alignment,
this.padding,
this.margin,
double? width,
double? height,
this.decoration,
}) : _height = height,
_width = width;