Equal padding on all sides
factory EasyPadding.all(double value, {Key? key, required Widget child}) { return EasyPadding._( key: key, padding: EdgeInsets.all(value), child: child, ); }