py4 method

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

Gives 4dp padding vertically.

Implementation

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