cMargZero property

Widget cMargZero

Adds zero margin to the widget.

This effectively removes any margin around the widget.

Implementation

Widget get cMargZero => Container(
      margin: EdgeInsets.zero,
      child: this,
    );