p method

Widget p([
  1. double n = 16.0
])

Applies padding to all sides of the widget.

Implementation

Widget p([double n = 16.0]) =>
    Padding(padding: EdgeInsets.all(n), child: this);