p20 method

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

Gives 20dp padding from all sides.

Implementation

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