py0 method

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

Gives 0 padding vertically.

Implementation

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