cMargAll method

Widget cMargAll(
  1. double margin
)

Adds margin to all sides of the widget.

margin specifies the margin value to be applied to all sides.

Implementation

Widget cMargAll(double margin) => Container(
      margin: EdgeInsets.all(margin),
      child: this,
    );