marginAll method

Widget marginAll(
  1. double value
)

Adds margin to widget

Implementation

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