p method

Widget p(
  1. double value
)

Implementation

Widget p(double value) {
  return Padding(
    padding: EdgeInsets.all(value),
    child: this,
  );
}