marginAll method

Widget marginAll(
  1. double value
)

Adds equal margin on all sides.

Implementation

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