py20 method

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

Gives 20dp padding vertically.

Implementation

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