py2 method

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

Gives 2dp padding vertically.

Implementation

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