p1 method

Padding p1({
  1. Key? key,
})

Gives 1dp padding from all sides.

Implementation

Padding p1({Key? key}) => Padding(
      key: key,
      padding: const EdgeInsets.all(Vx.dp1),
      child: this,
    );