py1 method

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

Gives 1dp padding vertically.

Implementation

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