marginAll method

Widget marginAll(
  1. double margin
)

Implementation

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