py8 method

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

Gives 8dp padding vertically.

Implementation

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