marginAll method

Widget marginAll(
  1. double value
)

Wraps the widget inside a Container with margin.

Implementation

Widget marginAll(double value) {
  return Container(
    margin: EdgeInsets.all(value),
    child: this,
  );
}