py12 method

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

Gives 12dp padding vertically.

Implementation

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