p0 method

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

Gives 0 padding from all sides.

Implementation

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