circle method
Makes the container a circle.
Implementation
VContainer circle() => VContainer(
child: child,
alignment: alignment,
padding: padding,
margin: margin,
width: _width,
height: _height,
decoration:
(decoration?.copyWith(shape: BoxShape.circle)) ??
const BoxDecoration(shape: BoxShape.circle),
);