spaceAround method

Widget spaceAround (
  1. [num factor = 1]
)

Implementation

Widget spaceAround([num factor = 1]) {
  return Container(
    margin: EdgeInsets.all(FludaX.x * factor),
    child: this,
  );
}