cPadZero property
Widget
get
cPadZero
Removes all padding from the widget.
Returns: A new widget with no padding.
Implementation
Widget get cPadZero => Padding(
padding: EdgeInsets.zero,
child: this,
);