paddingAll method

Widget paddingAll(
  1. double space
)

Equal padding on all sides.

Implementation

Widget paddingAll(double space) => Padding(padding: EdgeInsets.all(space), child: this);